| /src/external/bsd/nsd/dist/ |
| tsig-openssl.c | 38 EVP_MAC_CTX* hmac_ctx; member in struct:tsig_openssl_context 67 EVP_MAC_CTX* hmac_ctx; local 77 hmac_ctx = EVP_MAC_CTX_new(data->mac); 78 if(!hmac_ctx) { 88 if(EVP_MAC_CTX_set_params(hmac_ctx, params) <= 0) { 90 EVP_MAC_CTX_free(hmac_ctx); 95 if(EVP_MAC_set_ctx_params(hmac_ctx, params) <= 0) { 97 EVP_MAC_CTX_free(hmac_ctx); 112 EVP_MAC_CTX_free(hmac_ctx); 118 algorithm->maximum_digest_size = EVP_MAC_CTX_get_mac_size(hmac_ctx); [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/slh_dsa/ |
| slh_dsa_hash_ctx.c | 52 ret->hmac_ctx = EVP_MAC_CTX_new(key->hmac); 53 if (ret->hmac_ctx == NULL) 90 if (src->hmac_ctx != NULL 91 && (ret->hmac_ctx = EVP_MAC_CTX_dup(src->hmac_ctx)) == NULL) 111 EVP_MAC_CTX_free(ctx->hmac_ctx);
|
| slh_dsa_local.h | 52 EVP_MAC_CTX *hmac_ctx; /* required by SHA algorithms for PRFmsg() */ member in struct:slh_dsa_hash_ctx_st 53 int hmac_digest_used; /* Used for lazy init of hmac_ctx digest */
|
| slh_hash.c | 178 EVP_MAC_CTX *mctx = hctx->hmac_ctx;
|
| /src/crypto/external/bsd/openssh/dist/ |
| mac.h | 40 struct ssh_hmac_ctx *hmac_ctx; member in struct:sshmac
|
| mac.c | 101 if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL) 137 if (mac->hmac_ctx == NULL || 138 ssh_hmac_init(mac->hmac_ctx, mac->key, mac->key_len) < 0) 173 if (ssh_hmac_init(mac->hmac_ctx, NULL, 0) < 0 || 174 ssh_hmac_update(mac->hmac_ctx, b, sizeof(b)) < 0 || 175 ssh_hmac_update(mac->hmac_ctx, data, datalen) < 0 || 176 ssh_hmac_final(mac->hmac_ctx, u.m, sizeof(u.m)) < 0) 227 } else if (mac->hmac_ctx != NULL) 228 ssh_hmac_free(mac->hmac_ctx); 229 mac->hmac_ctx = NULL [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| hmac_link.c | 188 dctx->ctxdata.hmac_ctx = ctx; 194 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 198 dctx->ctxdata.hmac_ctx = NULL; 204 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 218 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 242 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx;
|
| dst_internal.h | 148 isc_hmac_t *hmac_ctx; member in union:dst_context::__anon23983
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| hmac_link.c | 179 dctx->ctxdata.hmac_ctx = ctx; 185 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 189 dctx->ctxdata.hmac_ctx = NULL; 195 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 209 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx; 233 isc_hmac_t *ctx = dctx->ctxdata.hmac_ctx;
|
| dst_internal.h | 172 isc_hmac_t *hmac_ctx; member in union:dst_context::__anon24249
|
| /src/external/bsd/unbound/dist/util/ |
| net_help.c | 112 * @param hmac_ctx: the hmac context, function sets this. 113 * with ..key_cb it is of type HMAC_CTX* 122 EVP_MAC_CTX *hmac_ctx, 124 HMAC_CTX* hmac_ctx, 1857 EVP_MAC_CTX *hmac_ctx, variable 1859 HMAC_CTX* hmac_ctx, 1895 EVP_MAC_CTX_set_params(hmac_ctx, params); 1897 EVP_MAC_set_ctx_params(hmac_ctx, params) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ossl_shim/ |
| ossl_shim.cc | 373 EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx, 394 if (!HMAC_Init_ex(hmac_ctx, kZeros, sizeof(kZeros), EVP_sha256(), NULL) ||
|
| /src/external/bsd/unbound/dist/ |
| configure | 22355 HMAC_CTX* hmac_ctx = NULL; 22358 int x = HMAC_Init_ex(hmac_ctx, hmac_key, 32, digest, NULL);
|