Searched refs:keyp (Results 1 - 9 of 9) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/include/dst/
H A Ddst.h230 const char *directory, isc_mem_t *mctx, dst_key_t **keyp);
244 * \li "keyp" is not NULL and "*keyp" is NULL.
251 * \li If successful, *keyp will contain a valid key.
256 dst_key_t **keyp);
267 * \li "keyp" is not NULL and "*keyp" is NULL.
274 * \li If successful, *keyp will contain a valid key.
280 isc_mem_t *mctx, dst_key_t **keyp);
288 * \li "keyp" i
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Ddst_api.c107 dst_key_t **keyp);
392 isc_mem_t *mctx, dst_key_t **keyp)
403 REQUIRE(keyp != NULL && *keyp == NULL);
430 *keyp = key;
436 dst_key_t **keyp)
449 REQUIRE(keyp != NULL && *keyp == NULL);
471 *keyp = pubkey;
512 *keyp
390 dst_key_fromfile(dns_name_t *name, dns_keytag_t id, unsigned int alg, int type, const char *directory, isc_mem_t *mctx, dst_key_t **keyp) argument
435 dst_key_fromnamedfile(const char *filename, int type, isc_mem_t *mctx, dst_key_t **keyp) argument
557 dst_key_fromdns(dns_name_t *name, dns_rdataclass_t rdclass, isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) argument
597 dst_key_frombuffer(dns_name_t *name, unsigned int alg, unsigned int flags, unsigned int protocol, dns_rdataclass_t rdclass, isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) argument
667 dst_key_fromgssapi(dns_name_t *name, gss_ctx_id_t gssctx, isc_mem_t *mctx, dst_key_t **keyp) argument
686 dst_key_fromlabel(dns_name_t *name, int alg, unsigned int flags, unsigned int protocol, dns_rdataclass_t rdclass, const char *engine, const char *label, const char *pin, isc_mem_t *mctx, dst_key_t **keyp) argument
728 dst_key_generate(dns_name_t *name, unsigned int alg, unsigned int bits, unsigned int param, unsigned int flags, unsigned int protocol, dns_rdataclass_t rdclass, isc_mem_t *mctx, dst_key_t **keyp) argument
824 dst_key_free(dst_key_t **keyp) argument
993 dst_key_read_public(const char *filename, int type, isc_mem_t *mctx, dst_key_t **keyp) argument
1282 frombuffer(dns_name_t *name, unsigned int alg, unsigned int flags, unsigned int protocol, dns_rdataclass_t rdclass, isc_buffer_t *source, isc_mem_t *mctx, dst_key_t **keyp) argument
[all...]
H A Dkeytable.c177 dns_keytable_add(dns_keytable_t *keytable, dst_key_t **keyp) { argument
184 * Add '*keyp' to 'keytable'.
188 REQUIRE(keyp != NULL);
190 keyname = dst_key_name(*keyp);
203 knode->key = *keyp;
206 *keyp = NULL;
H A Dview.c1258 dns_view_gettsig(dns_view_t *view, dns_name_t *keyname, dns_tsigkey_t **keyp) argument
1261 REQUIRE(keyp != NULL && *keyp == NULL);
1263 result = dns_tsigkey_find(keyp, keyname, NULL,
1266 result = dns_tsigkey_find(keyp, keyname, NULL,
1273 dns_tsigkey_t **keyp)
1287 result = dns_view_gettsig(view, keyname, keyp);
1272 dns_view_getpeertsig(dns_view_t *view, isc_netaddr_t *peeraddr, dns_tsigkey_t **keyp) argument
H A Dtsig.c654 dns_tsigkey_detach(dns_tsigkey_t **keyp) { argument
658 REQUIRE(keyp != NULL);
659 REQUIRE(VALID_TSIG_KEY(*keyp));
661 key = *keyp;
667 *keyp = NULL;
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dkeytable.h109 dns_keytable_add(dns_keytable_t *keytable, dst_key_t **keyp);
111 * Add '*keyp' to 'keytable'.
115 *\li Ownership of *keyp is transferred to the keytable.
119 *\li keyp != NULL && *keyp is a valid dst_key_t *.
123 *\li On success, *keyp == NULL
H A Dtsig.h154 dns_tsigkey_detach(dns_tsigkey_t **keyp);
159 *\li 'keyp' is not NULL and '*keyp' is a valid TSIG key
162 *\li 'keyp' points to NULL
H A Dview.h656 dns_tsigkey_t **keyp);
662 *\li keyp points to a NULL dns_tsigkey_t *.
665 *\li #ISC_R_SUCCESS A key was found and '*keyp' now points to it.
672 dns_tsigkey_t **keyp);
678 * keyp points to a NULL dns_tsigkey_t *.
681 *\li #ISC_R_SUCCESS A key was found and '*keyp' now points to it.
/bind-9.6-ESV-R11/bin/named/
H A Dquery.c2403 dns_rdataset_t *keyrdataset, dst_key_t **keyp)
2437 client->mctx, keyp);
2440 if (rrsig->algorithm == (dns_secalg_t)dst_key_alg(*keyp) &&
2441 rrsig->keyid == (dns_keytag_t)dst_key_id(*keyp) &&
2442 dst_key_iszonekey(*keyp)) {
2446 dst_key_free(keyp);
2402 get_key(ns_client_t *client, dns_db_t *db, dns_rdata_rrsig_t *rrsig, dns_rdataset_t *keyrdataset, dst_key_t **keyp) argument

Completed in 36 milliseconds