Discuss this help topic in SecureBlackbox Forum

TSBCertificateRequestOptions

Declared in     See also     


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


Declaration

[C#]
    TSBCertificateRequestOptions = int;
        const int croGenerateKeyIdentifier = 1;
        const int croUseMSExtensionIdentifier = 2;
        const int croAutoAdjustTagTypes = 4;

[VB.NET]
    TSBCertificateRequestOptions As Integer
        Const croGenerateKeyIdentifier As Integer = 1
        Const croUseMSExtensionIdentifier As Integer = 2
        Const croAutoAdjustTagTypes As Integer = 4

[Pascal]
    under development

[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 TSBCertificateRequestOptions extends TSBBaseEnum {
        const croGenerateKeyIdentifier = 1;
        const croUseMSExtensionIdentifier = 2;
        const croAutoAdjustTagTypes = 4;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBCertificateRequestOption    

Discuss this help topic in SecureBlackbox Forum