SilcSKEPKType
NAME
typedef enum { ... } SilcSKEPKType;
DESCRIPTION
Public key and certificate types defined by the SKE protocol.
SOURCE
typedef enum {
SILC_SKE_PK_TYPE_SILC = 1, /* SILC Public Key, mandatory */
SILC_SKE_PK_TYPE_SSH2 = 2, /* SSH2 Public key, not supported */
SILC_SKE_PK_TYPE_X509V3 = 3, /* X.509v3 certificate, not supported */
SILC_SKE_PK_TYPE_OPENPGP = 4, /* OpenPGP certificate, not supported */
SILC_SKE_PK_TYPE_SPKI = 5 /* SPKI certificate, not supported */
} SilcSKEPKType;
|