Discuss this help topic in SecureBlackbox Forum
Defines possible signature types.
Declaration
[C#/Java]
enum TSBMessageSignatureType { mstPublicKey = 0, mstMAC = 1 };
[VB.NET]
Enum TSBMessageSignatureType
mstPublicKey = 0
mstMAC = 1
End Enum
[Pascal]
TSBMessageSignatureType = (mstPublicKey, mstMAC);
[C++]
typedef uint8_t TSBMessageSignatureTypeRaw;
typedef enum { mstPublicKey = 0, mstMAC = 1 } TSBMessageSignatureType;
Description
The main difference between these two types
is that the first one has no recipients and it can be verified by anyone,
and the second signature has no author but has one or more recipients
(and only they can verify the signature).
Possible values:
Declared in
.NET:
- Namespace: SBMessages
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum