Discuss this help topic in SecureBlackbox Forum
Defines possible Netscape certificate types.
Declaration
[C#/Java]
TElNetscapeCertTypeFlag = 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]
TElNetscapeCertTypeFlag 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]
TElNetscapeCertTypeFlag = (nsSSLClient, nsSSLServer, nsSMIME, nsObjectSign, nsSSLCA, nsSMIMECA, nsObjectSignCA);
[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;
Description
Possible values:
Declared in
.NET:
- Namespace: SBX509Ext
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum