Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPKCS11CryptoContextType = short;
const short cctUndefined = 0;
const short cctSymCrypto = 1;
const short cctPKICrypto = 2;
const short cctHash = 3;
const short cctHMAC = 4;
[VB.NET]
TSBPKCS11CryptoContextType As Short
Const cctUndefined As Short = 0
Const cctSymCrypto As Short = 1
Const cctPKICrypto As Short = 2
Const cctHash As Short = 3
Const cctHMAC As Short = 4
[Pascal]
under development
[C++]
typedef uint8_t TSBPKCS11CryptoContextTypeRaw;
typedef enum { cctUndefined = 0, cctSymCrypto = 1, cctPKICrypto = 2, cctHash = 3, cctHMAC = 4 } TSBPKCS11CryptoContextType;
[PHP]
class TSBPKCS11CryptoContextType extends TSBBaseEnum {
const cctUndefined = 0;
const cctSymCrypto = 1;
const cctPKICrypto = 2;
const cctHash = 3;
const cctHMAC = 4;
}
[Java]
public enum TSBPKCS11CryptoContextType { cctUndefined, cctSymCrypto, cctPKICrypto, cctHash, cctHMAC }
Possible values
Declared in
.NET:
- Namespace: SBCryptoProvPKCS11
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum