Discuss this help topic in SecureBlackbox Forum

TSBLDAPSKeyserverAttribute

Declared in     


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


This type defines possible attributes for PGP keyservers.

Declaration

[C#]
    public enum TSBLDAPSKeyserverAttribute { lkaCertID = 0, lkaDisabled = 1, lkaKeyID = 2, lkaKeyType = 3, lkaUserID = 4, lkaKeyCreateTime = 5, lkaSignerID = 6, lkaRevoked = 7, lkaSubKeyID = 8, lkaSubKeyID32 = 9, lkaKeySize = 10, lkaKeyExpireTime = 11 };

[VB.NET]
    Enum TSBLDAPSKeyserverAttribute
        lkaCertID = 0
        lkaDisabled = 1
        lkaKeyID = 2
        lkaKeyType = 3
        lkaUserID = 4
        lkaKeyCreateTime = 5
        lkaSignerID = 6
        lkaRevoked = 7
        lkaSubKeyID = 8
        lkaSubKeyID32 = 9
        lkaKeySize = 10
        lkaKeyExpireTime = 11
    End Enum

[Pascal]
    TSBLDAPSKeyserverAttribute = (lkaCertID, lkaDisabled, lkaKeyID, lkaKeyType, lkaUserID, lkaKeyCreateTime, lkaSignerID, lkaRevoked, lkaSubKeyID, lkaSubKeyID32, lkaKeySize, lkaKeyExpireTime);

[C++]
    typedef uint8_t TSBLDAPSKeyserverAttributeRaw;
    typedef enum { lkaCertID = 0, lkaDisabled = 1, lkaKeyID = 2, lkaKeyType = 3, lkaUserID = 4, lkaKeyCreateTime = 5, lkaSignerID = 6, lkaRevoked = 7, lkaSubKeyID = 8, lkaSubKeyID32 = 9, lkaKeySize = 10, lkaKeyExpireTime = 11 } TSBLDAPSKeyserverAttribute;

[PHP]
    class TSBLDAPSKeyserverAttribute extends TSBBaseEnum {
        const lkaCertID = 0;
        const lkaDisabled = 1;
        const lkaKeyID = 2;
        const lkaKeyType = 3;
        const lkaUserID = 4;
        const lkaKeyCreateTime = 5;
        const lkaSignerID = 6;
        const lkaRevoked = 7;
        const lkaSubKeyID = 8;
        const lkaSubKeyID32 = 9;
        const lkaKeySize = 10;
        const lkaKeyExpireTime = 11;
    }

[Java]
    public enum TSBLDAPSKeyserverAttribute { lkaCertID, lkaDisabled, lkaKeyID, lkaKeyType, lkaUserID, lkaKeyCreateTime, lkaSignerID, lkaRevoked, lkaSubKeyID, lkaSubKeyID32, lkaKeySize, lkaKeyExpireTime }

Possible values

Declared in

.NET:
  • Namespace: SBLDAPSKeyserverClient
  • Assembly: SecureBlackbox.DAVClient
VCL:
  • Unit: SBLDAPSKeyserverClient
Java:
  • Package: SecureBlackbox.WebDAV.jar
C++:
  • sbldapskeyserverclient.h

Discuss this help topic in SecureBlackbox Forum