Home
last modified time | relevance | path

Searched defs:dst_key (Results 1 – 5 of 5) sorted by relevance

/minix3/external/bsd/bind/dist/lib/dns/
H A Ddst_internal.h96 struct dst_key { struct
97 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 …]
/minix3/external/bsd/dhcp/dist/dst/
H A Ddst_internal.h33 typedef struct dst_key { struct
34 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 */
/minix3/external/bsd/dhcp/dist/includes/isc-dhcp/
H A Ddst.h6 typedef struct dst_key { struct
7 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 */
/minix3/lib/libc/include/isc/
H A Ddst.h7 typedef struct dst_key { struct
30 #define dst_key_to_buffer __dst_key_to_buffer argument
/minix3/external/bsd/dhcp/dist/omapip/
H A Dconnection.c768 static isc_result_t make_dst_key (dst_key_t **dst_key, omapi_object_t *a) { in make_dst_key()