Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBPGPKeyAlgorithmType { katRSA = 0, katDHE_DSS = 1, katDHE_RSA = 2 };
[VB.NET]
Enum TSBPGPKeyAlgorithmType
katRSA = 0
katDHE_DSS = 1
katDHE_RSA = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBPGPKeyAlgorithmTypeRaw;
typedef enum { katRSA = 0, katDHE_DSS = 1, katDHE_RSA = 2 } TSBPGPKeyAlgorithmType;
[PHP]
class TSBPGPKeyAlgorithmType extends TSBBaseEnum {
const katRSA = 0;
const katDHE_DSS = 1;
const katDHE_RSA = 2;
}
[Java]
public enum TSBPGPKeyAlgorithmType { katRSA, katDHE_DSS, katDHE_RSA }
Possible values
Declared in
.NET:
- Namespace: SBPGPTLS
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum