Searched defs:dst_key (Results 1 – 5 of 5) sorted by relevance
96 struct dst_key { struct97 unsigned int magic;98 isc_refcount_t refs;99 dns_name_t * key_name; /*%< name of the key */100 unsigned int key_size; /*%< size of the key in bits */101 unsigned int key_proto; /*%< protocols this key is used for */102 unsigned int key_alg; /*%< algorithm of the key */103 isc_uint32_t key_flags; /*%< flags of the public key */104 isc_uint16_t key_id; /*%< identifier of the key */105 isc_uint16_t key_rid; /*%< identifier of the key when[all …]
33 typedef struct dst_key { struct34 char *dk_key_name; /* name of the key */35 int dk_key_size; /* this is the size of the key in bits */36 int dk_proto; /* what protocols this key can be used for */37 int dk_alg; /* algorithm number from key record */38 unsigned dk_flags; /* and the flags of the public key */39 unsigned dk_id; /* identifier of the key */40 void *dk_KEY_struct; /* pointer to key in crypto pkg fmt */41 struct dst_func *dk_func; /* point to crypto pgk specific function table */
6 typedef struct dst_key { struct7 char *dk_key_name; /* name of the key */8 int dk_key_size; /* this is the size of the key in bits */9 int dk_proto; /* what protocols this key can be used for */10 int dk_alg; /* algorithm number from key record */11 unsigned dk_flags; /* and the flags of the public key */12 unsigned dk_id; /* identifier of the key */
7 typedef struct dst_key { struct30 #define dst_key_to_buffer __dst_key_to_buffer argument
768 static isc_result_t make_dst_key (dst_key_t **dst_key, omapi_object_t *a) { in make_dst_key()