Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPKCS11CryptoContextOperation = short;
const short ccoUndefined = 0;
const short ccoEncrypt = 1;
const short ccoDecrypt = 2;
const short ccoSign = 3;
const short ccoVerify = 4;
const short ccoSignDetached = 5;
const short ccoVerifyDetached = 6;
const short ccoHash = 7;
[VB.NET]
TSBPKCS11CryptoContextOperation As Short
Const ccoUndefined As Short = 0
Const ccoEncrypt As Short = 1
Const ccoDecrypt As Short = 2
Const ccoSign As Short = 3
Const ccoVerify As Short = 4
Const ccoSignDetached As Short = 5
Const ccoVerifyDetached As Short = 6
Const ccoHash As Short = 7
[Pascal]
under development
[C++]
typedef uint8_t TSBPKCS11CryptoContextOperationRaw;
typedef enum { ccoUndefined = 0, ccoEncrypt = 1, ccoDecrypt = 2, ccoSign = 3, ccoVerify = 4, ccoSignDetached = 5, ccoVerifyDetached = 6, ccoHash = 7 } TSBPKCS11CryptoContextOperation;
[PHP]
class TSBPKCS11CryptoContextOperation extends TSBBaseEnum {
const ccoUndefined = 0;
const ccoEncrypt = 1;
const ccoDecrypt = 2;
const ccoSign = 3;
const ccoVerify = 4;
const ccoSignDetached = 5;
const ccoVerifyDetached = 6;
const ccoHash = 7;
}
[Java]
public enum TSBPKCS11CryptoContextOperation { ccoUndefined, ccoEncrypt, ccoDecrypt, ccoSign, ccoVerify, ccoSignDetached, ccoVerifyDetached, ccoHash }
Possible values
Declared in
.NET:
- Namespace: SBCryptoProvPKCS11
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum