Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#]
public enum TSBDSAKeyFormat { dsaFIPS = 0, dsaX509 = 1 };
[VB.NET]
Enum TSBDSAKeyFormat
dsaFIPS = 0
dsaX509 = 1
End Enum
[Pascal]
TSBDSAKeyFormat = (dsaFIPS, dsaX509);
[C++]
typedef uint8_t TSBDSAKeyFormatRaw;
typedef enum { dsaFIPS = 0, dsaX509 = 1 } TSBDSAKeyFormat;
[PHP]
class TSBDSAKeyFormat extends TSBBaseEnum {
const dsaFIPS = 0;
const dsaX509 = 1;
}
[Java]
public enum TSBDSAKeyFormat { dsaFIPS, dsaX509 }
Possible values
Declared in
.NET:
- Namespace: SBPublicKeyCrypto
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum