Discuss this help topic in SecureBlackbox Forum

TSBKeyUsageLookupOption

Declared in     


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


Defines if certificate must have all key usagesdetermined by KeyUsage property or at least one.

Declaration

[C#]
    TSBKeyUsageLookupOption = short;
        const short kuloMatchAll = 0;

[VB.NET]
    TSBKeyUsageLookupOption As Short
        Const kuloMatchAll As Short = 0

[Pascal]
    TSBKeyUsageLookupOption = (kuloMatchAll);

[C++]
    typedef uint8_t TSBKeyUsageLookupOptionRaw;
    typedef enum { kuloMatchAll = 0 } TSBKeyUsageLookupOption;
    
    typedef uint32_t TSBKeyUsageLookupOptionsRaw;
    typedef enum { f_kuloMatchAll = 1 } TSBKeyUsageLookupOptions;

[PHP]
    class TSBKeyUsageLookupOption extends TSBBaseEnum {
        const kuloMatchAll = 0;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBCustomCertStorage
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBCustomCertStorage
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbcustomcertstorage.h

Discuss this help topic in SecureBlackbox Forum