Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBCryptoEngineType { cetDefault = 0, cetFIPS = 1, cetCustom = 2 };
[VB.NET]
Enum TSBCryptoEngineType
cetDefault = 0
cetFIPS = 1
cetCustom = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBCryptoEngineTypeRaw;
typedef enum { cetDefault = 0, cetFIPS = 1, cetCustom = 2 } TSBCryptoEngineType;
[PHP]
class TSBCryptoEngineType extends TSBBaseEnum {
const cetDefault = 0;
const cetFIPS = 1;
const cetCustom = 2;
}
[Java]
public enum TSBCryptoEngineType { cetDefault, cetFIPS, cetCustom }
Possible values
Declared in
.NET:
- Namespace: SBCryptoProvManager
- Assembly: SecureBlackbox...
VCL:
- Unit: SBCryptoProvManager
Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum