Home
last modified time | relevance | path

Searched refs:DST_KEY (Results 1 – 7 of 7) sorted by relevance

/titanic_41/usr/src/lib/libresolv2/include/isc/
H A Ddst.h12 } DST_KEY; typedef
63 DST_KEY *, /*!< the key to use */
70 DST_KEY *, /*!< the key to use */
76 DST_KEY *dst_read_key(const char *, /*!< name of key */
80 int dst_write_key(const DST_KEY *, /*!< key to write out */
82 DST_KEY *dst_dnskey_to_key(const char *, /*!< KEY record name */
85 int dst_key_to_dnskey(const DST_KEY *, /*!< key to translate */
88 DST_KEY *dst_buffer_to_key(const char *, /*!< name of the key */
94 int dst_key_to_buffer(DST_KEY *, u_char *, int);
96 DST_KEY *dst_generate_key(const char *, /*!< name of new key */
[all …]
/titanic_41/usr/src/lib/libresolv2/common/dst/
H A Ddst_internal.h45 } DST_KEY; typedef
80 int (*sign)(const int mode, DST_KEY *key, void **context,
83 int (*verify)(const int mode, DST_KEY *key, void **context,
86 int (*compare)(const DST_KEY *key1, const DST_KEY *key2);
87 int (*generate)(DST_KEY *key, int parms);
90 int (*to_dns_key)(const DST_KEY *key, u_int8_t *out,
92 int (*from_dns_key)(DST_KEY *key, const u_int8_t *str,
94 int (*to_file_fmt)(const DST_KEY *key, char *out,
96 int (*from_file_fmt)(DST_KEY *key, const char *out,
H A Ddst_api.c69 static DST_KEY *dst_s_read_public_key(const char *in_name,
71 static int dst_s_read_private_key_file(char *name, DST_KEY *pk_key,
73 static int dst_s_write_public_key(const DST_KEY *key);
74 static int dst_s_write_private_key(const DST_KEY *key);
77 static DST_KEY *dst_s_get_key_struct(const char *name, const int alg,
160 static DST_KEY *
164 DST_KEY *new_key = NULL; in dst_s_get_key_struct()
167 new_key = (DST_KEY *) malloc(sizeof(*new_key)); in dst_s_get_key_struct()
197 dst_compare_keys(const DST_KEY *key1, const DST_KEY *key2) in dst_compare_keys()
243 dst_sign_data(const int mode, DST_KEY *in_key, void **context, in dst_sign_data()
[all …]
H A Dhmac_link.c94 dst_hmac_md5_sign(const int mode, DST_KEY *d_key, void **context, in dst_hmac_md5_sign()
163 dst_hmac_md5_verify(const int mode, DST_KEY *d_key, void **context, in dst_hmac_md5_verify()
226 dst_buffer_to_hmac_md5(DST_KEY *dkey, const u_char *key, const int keylen) in dst_buffer_to_hmac_md5()
281 dst_hmac_md5_key_to_file_format(const DST_KEY *dkey, char *buff, in dst_hmac_md5_key_to_file_format()
344 dst_hmac_md5_key_from_file_format(DST_KEY *dkey, const char *buff, in dst_hmac_md5_key_from_file_format()
395 dst_hmac_md5_to_dns_key(const DST_KEY *in_key, u_char *out_str, in dst_hmac_md5_to_dns_key()
421 dst_hmac_md5_compare_keys(const DST_KEY *key1, const DST_KEY *key2) in dst_hmac_md5_compare_keys()
450 dst_hmac_md5_generate_key(DST_KEY *key, const int nothing) in dst_hmac_md5_generate_key()
/titanic_41/usr/src/lib/libresolv2/common/nameser/
H A Dns_sign.c93 DST_KEY *key = (DST_KEY *)k; in ns_sign2()
H A Dns_verify.c140 DST_KEY *key = (DST_KEY *)k; in ns_verify()
/titanic_41/usr/src/lib/libresolv2/common/resolv/
H A Dres_sendsigned.c33 DST_KEY *dstkey; in res_nsendsigned()