|
Declaration
[C#]
enum TSBASMessageProcessingStep { mpsEncoding = 0, mpsSigning = 1, mpsEncrypting = 2,
mpsDecodingEncrypted = 3, mpsDecrypting = 4, mpsDecodingSignature = 5, mpsDecodingData = 6, mpsVerifying = 7 }
[VB.NET]
Enum TSBASMessageProcessingStep
mpsEncoding = 0
mpsSigning = 1
mpsEncrypting = 2
mpsDecodingEncrypted = 3
mpsDecrypting = 4
mpsDecodingSignature = 5
mpsDecodingData = 6
mpsVerifying = 7
End Enum
[Pascal]
TSBASMessageProcessingStep = (mpsEncoding, mpsSigning, mpsEncrypting,
mpsDecodingEncrypted, mpsDecrypting, mpsDecodingSignature, mpsDecodingData, mpsVerifying);
[VB6]
not implemented;
[ActiveX]
not implemented;
[DLL]
not implemented;
|