| /src/external/mpl/bind/dist/lib/dns/ |
| dst_internal.h | 157 isc_result_t (*createctx)(dst_key_t *key, dst_context_t *dctx); 159 dst_context_t *dctx); 160 void (*destroyctx)(dst_context_t *dctx); 161 isc_result_t (*adddata)(dst_context_t *dctx, const isc_region_t *data); 166 isc_result_t (*sign)(dst_context_t *dctx, isc_buffer_t *sig); 167 isc_result_t (*verify)(dst_context_t *dctx, const isc_region_t *sig); 168 isc_result_t (*verify2)(dst_context_t *dctx, int maxbits,
|
| hmac_link.c | 59 dst_context_t *dctx) { \ 62 static void hmac##alg##_destroyctx(dst_context_t *dctx) { \ 65 static isc_result_t hmac##alg##_adddata(dst_context_t *dctx, \ 69 static isc_result_t hmac##alg##_sign(dst_context_t *dctx, \ 73 static isc_result_t hmac##alg##_verify(dst_context_t *dctx, \ 176 dst_context_t *dctx) { 193 hmac_destroyctx(dst_context_t *dctx) { 202 hmac_adddata(const dst_context_t *dctx, const isc_region_t *data) { 217 hmac_sign(const dst_context_t *dctx, isc_buffer_t *sig) { 241 hmac_verify(const dst_context_t *dctx, const isc_region_t *sig) [all...] |
| gssapi_link.c | 68 gssapi_create_signverify_ctx(dst_key_t *key, dst_context_t *dctx) { 86 gssapi_destroy_signverify_ctx(dst_context_t *dctx) { 106 gssapi_adddata(dst_context_t *dctx, const isc_region_t *data) { 136 gssapi_sign(dst_context_t *dctx, isc_buffer_t *sig) { 191 gssapi_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| openssleddsa_link.c | 120 openssleddsa_createctx(dst_key_t *key, dst_context_t *dctx) { 135 openssleddsa_destroyctx(dst_context_t *dctx) { 148 openssleddsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 176 openssleddsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 223 openssleddsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| opensslecdsa_link.c | 651 opensslecdsa_createctx(dst_key_t *key, dst_context_t *dctx) { 697 opensslecdsa_destroyctx(dst_context_t *dctx) { 710 opensslecdsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 740 opensslecdsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 802 opensslecdsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| opensslrsa_link.c | 168 opensslrsa_createctx(dst_key_t *key, dst_context_t *dctx) { 234 opensslrsa_destroyctx(dst_context_t *dctx) { 249 opensslrsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 265 opensslrsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 321 opensslrsa_verify2(dst_context_t *dctx, int maxbits, const isc_region_t *sig) { 351 opensslrsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| dst_api.c | 285 bool useforsigning, int maxbits, dst_context_t **dctxp) { 286 dst_context_t *dctx; 302 *dctx = (dst_context_t){ 318 isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t)); 327 dst_context_destroy(dst_context_t **dctxp) { 328 dst_context_t *dctx; 340 isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t)); 344 dst_context_adddata(dst_context_t *dctx, const isc_region_t *data) { 353 dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig) { 376 dst_context_verify(dst_context_t *dctx, isc_region_t *sig) [all...] |
| dnssec.c | 65 dst_context_t *ctx = arg; 149 digest_sig(dst_context_t *ctx, bool downcase, dns_rdata_t *sigrdata, 187 dst_context_t *ctx = NULL; 367 dst_context_t *ctx = NULL; 742 dst_context_t *ctx = NULL; 874 dst_context_t *ctx = NULL;
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| dst_internal.h | 184 isc_result_t (*createctx)(dst_key_t *key, dst_context_t *dctx); 186 dst_context_t *dctx); 187 void (*destroyctx)(dst_context_t *dctx); 188 isc_result_t (*adddata)(dst_context_t *dctx, const isc_region_t *data); 193 isc_result_t (*sign)(dst_context_t *dctx, isc_buffer_t *sig); 194 isc_result_t (*verify)(dst_context_t *dctx, const isc_region_t *sig); 195 isc_result_t (*verify2)(dst_context_t *dctx, int maxbits,
|
| hmac_link.c | 66 dst_context_t *dctx) { \ 69 static void hmac##alg##_destroyctx(dst_context_t *dctx) { \ 72 static isc_result_t hmac##alg##_adddata(dst_context_t *dctx, \ 76 static isc_result_t hmac##alg##_sign(dst_context_t *dctx, \ 80 static isc_result_t hmac##alg##_verify(dst_context_t *dctx, \ 167 dst_context_t *dctx) { 184 hmac_destroyctx(dst_context_t *dctx) { 193 hmac_adddata(const dst_context_t *dctx, const isc_region_t *data) { 208 hmac_sign(const dst_context_t *dctx, isc_buffer_t *sig) { 232 hmac_verify(const dst_context_t *dctx, const isc_region_t *sig) [all...] |
| gssapi_link.c | 57 gssapi_create_signverify_ctx(dst_key_t *key, dst_context_t *dctx) { 75 gssapi_destroy_signverify_ctx(dst_context_t *dctx) { 95 gssapi_adddata(dst_context_t *dctx, const isc_region_t *data) { 125 gssapi_sign(dst_context_t *dctx, isc_buffer_t *sig) { 180 gssapi_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| openssleddsa_link.c | 109 openssleddsa_createctx(dst_key_t *key, dst_context_t *dctx) { 123 openssleddsa_destroyctx(dst_context_t *dctx) { 135 openssleddsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 162 openssleddsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 214 openssleddsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| pkcs11rsa_link.c | 59 pkcs11rsa_createctx_sign(dst_key_t *key, dst_context_t *dctx) { 278 dst_context_t *dctx) { 436 pkcs11rsa_createctx(dst_key_t *key, dst_context_t *dctx) { 445 pkcs11rsa_createctx2(dst_key_t *key, int maxbits, dst_context_t *dctx) { 455 pkcs11rsa_destroyctx(dst_context_t *dctx) { 473 pkcs11rsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 493 pkcs11rsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 520 pkcs11rsa_verify(dst_context_t *dctx, const isc_region_t *sig) { 553 pkcs11rsa_createctx(dst_key_t *key, dst_context_t *dctx) { 638 pkcs11rsa_destroyctx(dst_context_t *dctx) [all...] |
| opensslecdsa_link.c | 84 opensslecdsa_createctx(dst_key_t *key, dst_context_t *dctx) { 114 opensslecdsa_destroyctx(dst_context_t *dctx) { 127 opensslecdsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 153 opensslecdsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 208 opensslecdsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| opensslrsa_link.c | 189 opensslrsa_createctx(dst_key_t *key, dst_context_t *dctx) { 260 opensslrsa_destroyctx(dst_context_t *dctx) { 275 opensslrsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 291 opensslrsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 320 opensslrsa_verify2(dst_context_t *dctx, int maxbits, const isc_region_t *sig) { 363 opensslrsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| dst_api.c | 294 bool useforsigning, int maxbits, dst_context_t **dctxp) { 295 dst_context_t *dctx; 310 dctx = isc_mem_get(mctx, sizeof(dst_context_t)); 329 isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t)); 338 dst_context_destroy(dst_context_t **dctxp) { 339 dst_context_t *dctx; 351 isc_mem_putanddetach(&dctx->mctx, dctx, sizeof(dst_context_t)); 355 dst_context_adddata(dst_context_t *dctx, const isc_region_t *data) { 364 dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig) { 387 dst_context_verify(dst_context_t *dctx, isc_region_t *sig) [all...] |
| pkcs11ecdsa_link.c | 76 pkcs11ecdsa_createctx(dst_key_t *key, dst_context_t *dctx) { 120 pkcs11ecdsa_destroyctx(dst_context_t *dctx) { 139 pkcs11ecdsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 156 pkcs11ecdsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 279 pkcs11ecdsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| pkcs11eddsa_link.c | 75 pkcs11eddsa_createctx(dst_key_t *key, dst_context_t *dctx) { 90 pkcs11eddsa_destroyctx(dst_context_t *dctx) { 102 pkcs11eddsa_adddata(dst_context_t *dctx, const isc_region_t *data) { 116 pkcs11eddsa_sign(dst_context_t *dctx, isc_buffer_t *sig) { 251 pkcs11eddsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
| dnssec.c | 77 dst_context_t *ctx = arg; 161 digest_sig(dst_context_t *ctx, bool downcase, dns_rdata_t *sigrdata, 199 dst_context_t *ctx = NULL; 392 dst_context_t *ctx = NULL; 953 dst_context_t *ctx = NULL; 1082 dst_context_t *ctx = NULL;
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dst/ |
| dst.h | 49 typedef struct dst_context dst_context_t; typedef in typeref:struct:dst_context 236 bool useforsigning, int maxbits, dst_context_t **dctxp); 254 dst_context_destroy(dst_context_t **dctxp); 266 dst_context_adddata(dst_context_t *dctx, const isc_region_t *data); 282 dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig); 300 dst_context_verify(dst_context_t *dctx, isc_region_t *sig); 303 dst_context_verify2(dst_context_t *dctx, unsigned int maxbits,
|
| /src/external/mpl/bind/dist/lib/dns/include/dst/ |
| dst.h | 48 typedef struct dst_context dst_context_t; typedef in typeref:struct:dst_context 261 bool useforsigning, int maxbits, dst_context_t **dctxp); 279 dst_context_destroy(dst_context_t **dctxp); 291 dst_context_adddata(dst_context_t *dctx, const isc_region_t *data); 307 dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig); 325 dst_context_verify(dst_context_t *dctx, isc_region_t *sig); 328 dst_context_verify2(dst_context_t *dctx, unsigned int maxbits,
|
| /src/external/mpl/bind/dist/tests/dns/ |
| tsig_test.c | 68 add_mac(dst_context_t *tsigctx, isc_buffer_t *buf) { 91 add_tsig(dst_context_t *tsigctx, dns_tsigkey_t *key, isc_buffer_t *target, 203 isc_buffer_t **tsigin, isc_buffer_t **tsigout, dst_context_t *tsigctx) { 275 dst_context_t *tsigctx = NULL; 276 dst_context_t *outctx = NULL;
|
| dst_test.c | 152 dst_context_t *ctx = NULL;
|
| /src/external/mpl/bind/dist/bin/dig/ |
| dighost.h | 163 dst_context_t *tsigctx;
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| message.h | 271 dst_context_t *tsigctx;
|