Discuss this help topic in SecureBlackbox Forum
Defines different processing steps of AS message.
Declaration
[C#/Java]
enum TSBASMessageProcessingStep { mpsEncoding = 0, mpsSigning = 1, mpsEncrypting = 2, mpsDecodingEncrypted = 3, mpsDecrypting = 4, mpsDecodingSignature = 5, mpsDecodingData = 6, mpsVerifying = 7, mpsCompressing = 8, mpsDecodingCompressed = 9, mpsDecompressing = 10 };
[VB.NET]
Enum TSBASMessageProcessingStep
mpsEncoding = 0
mpsSigning = 1
mpsEncrypting = 2
mpsDecodingEncrypted = 3
mpsDecrypting = 4
mpsDecodingSignature = 5
mpsDecodingData = 6
mpsVerifying = 7
mpsCompressing = 8
mpsDecodingCompressed = 9
mpsDecompressing = 10
End Enum
[Pascal]
TSBASMessageProcessingStep = (mpsEncoding, mpsSigning, mpsEncrypting, mpsDecodingEncrypted, mpsDecrypting, mpsDecodingSignature, mpsDecodingData, mpsVerifying, mpsCompressing, mpsDecodingCompressed, mpsDecompressing);
[C++]
typedef uint8_t TSBASMessageProcessingStepRaw;
typedef enum { mpsEncoding = 0, mpsSigning = 1, mpsEncrypting = 2, mpsDecodingEncrypted = 3, mpsDecrypting = 4, mpsDecodingSignature = 5, mpsDecodingData = 6, mpsVerifying = 7, mpsCompressing = 8, mpsDecodingCompressed = 9, mpsDecompressing = 10 } TSBASMessageProcessingStep;
Description
Possible values:
Declared in
.NET:
- Namespace: SBASCommon
- Assembly: SecureBlackbox.EDI
VCL:Java:
- Package: SecureBlackbox.EDI.jar
C++:
Discuss this help topic in SecureBlackbox Forum