Discuss this help topic in SecureBlackbox Forum

TElDistributionPointParameters

Declared in     See also     


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


Declaration

[C#]
    TElDistributionPointParameters = int;
        const int dppName = 1;
        const int dppCRLIssuer = 2;
        const int dppReasonFlags = 4;

[VB.NET]
    TElDistributionPointParameters As Integer
        Const dppName As Integer = 1
        Const dppCRLIssuer As Integer = 2
        Const dppReasonFlags As Integer = 4

[Pascal]
    under development

[C++]
    typedef uint8_t TElDistributionPointParameterRaw;
    typedef enum { dppName = 0, dppCRLIssuer = 1, dppReasonFlags = 2 } TElDistributionPointParameter;
    
    typedef uint32_t TElDistributionPointParametersRaw;
    typedef enum { f_dppName = 1, f_dppCRLIssuer = 2, f_dppReasonFlags = 4 } TElDistributionPointParameters;

[PHP]
    class TElDistributionPointParameters extends TSBBaseEnum {
        const dppName = 1;
        const dppCRLIssuer = 2;
        const dppReasonFlags = 4;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBX509Ext
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBX509Ext
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbx509ext.h

See also:     TElDistributionPointParameter    

Discuss this help topic in SecureBlackbox Forum