Discuss this help topic in SecureBlackbox Forum

TSBASMessageProcessingStep

Declared in     


Filter: C#/Java  VB.NET  Pascal  C++  


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:
  • Unit: SBASCommon
Java:
  • Package: SecureBlackbox.EDI.jar
C++:
  • sbascommon.h

Discuss this help topic in SecureBlackbox Forum