Discuss this help topic in SecureBlackbox Forum

TSBCertificateRequestOption

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines certificate request options.

Declaration

[C#]
    TSBCertificateRequestOption = short;
        const short croGenerateKeyIdentifier = 0;
        const short croUseMSExtensionIdentifier = 1;
        const short croAutoAdjustTagTypes = 2;

[VB.NET]
    TSBCertificateRequestOption As Short
        Const croGenerateKeyIdentifier As Short = 0
        Const croUseMSExtensionIdentifier As Short = 1
        Const croAutoAdjustTagTypes As Short = 2

[Pascal]
    TSBCertificateRequestOption = (croGenerateKeyIdentifier, croUseMSExtensionIdentifier, croAutoAdjustTagTypes);

[C++]
    typedef uint8_t TSBCertificateRequestOptionRaw;
    typedef enum { croGenerateKeyIdentifier = 0, croUseMSExtensionIdentifier = 1, croAutoAdjustTagTypes = 2 } TSBCertificateRequestOption;
    
    typedef uint32_t TSBCertificateRequestOptionsRaw;
    typedef enum { f_croGenerateKeyIdentifier = 1, f_croUseMSExtensionIdentifier = 2, f_croAutoAdjustTagTypes = 4 } TSBCertificateRequestOptions;

[PHP]
    class TSBCertificateRequestOption extends TSBBaseEnum {
        const croGenerateKeyIdentifier = 0;
        const croUseMSExtensionIdentifier = 1;
        const croAutoAdjustTagTypes = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBPKCS10
  • Assembly: SecureBlackbox.PKI
VCL:
  • Unit: SBPKCS10
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbpkcs10.h

Discuss this help topic in SecureBlackbox Forum