Structure SilcAttributeObjPk
NAME
typedef struct { ... } SilcAttributeObjPk;
DESCRIPTION
Data type for public key, certificate or digital signatures. The
caller must free the data inside the structure.
SOURCE
typedef struct {
char *type; /* public key/certificate type, NULL
when contains digital signature. */
unsigned char *data; /* public key/cert/signature data. The
encoding depends of the `type'. */
SilcUInt32 data_len; /* data length */
} SilcAttributeObjPk;
|