Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TElNetscapeCertType = int;
const int nsSSLClient = 1;
const int nsSSLServer = 2;
const int nsSMIME = 4;
const int nsObjectSign = 8;
const int nsSSLCA = 16;
const int nsSMIMECA = 32;
const int nsObjectSignCA = 64;
[VB.NET]
TElNetscapeCertType As Integer
Const nsSSLClient As Integer = 1
Const nsSSLServer As Integer = 2
Const nsSMIME As Integer = 4
Const nsObjectSign As Integer = 8
Const nsSSLCA As Integer = 16
Const nsSMIMECA As Integer = 32
Const nsObjectSignCA As Integer = 64
[Pascal]
under development
[C++]
typedef uint8_t TElNetscapeCertTypeFlagRaw;
typedef enum { nsSSLClient = 0, nsSSLServer = 1, nsSMIME = 2, nsObjectSign = 3, nsSSLCA = 4, nsSMIMECA = 5, nsObjectSignCA = 6 } TElNetscapeCertTypeFlag;
typedef uint32_t TElNetscapeCertTypeRaw;
typedef enum { f_nsSSLClient = 1, f_nsSSLServer = 2, f_nsSMIME = 4, f_nsObjectSign = 8, f_nsSSLCA = 16, f_nsSMIMECA = 32, f_nsObjectSignCA = 64 } TElNetscapeCertType;
[PHP]
class TElNetscapeCertType extends TSBBaseEnum {
const nsSSLClient = 1;
const nsSSLServer = 2;
const nsSMIME = 4;
const nsObjectSign = 8;
const nsSSLCA = 16;
const nsSMIMECA = 32;
const nsObjectSignCA = 64;
}
Possible values
Declared in
.NET:
- Namespace: SBX509Ext
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum