Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/evp/
Dp_hmac.c72 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member
83 hctx->ktmp.type = V_ASN1_OCTET_STRING; in pkey_hmac_init()
103 if (sctx->ktmp.data) { in pkey_hmac_copy()
104 if (!ASN1_OCTET_STRING_set(&dctx->ktmp, sctx->ktmp.data, in pkey_hmac_copy()
105 sctx->ktmp.length)) { in pkey_hmac_copy()
120 if (hctx->ktmp.data) { in pkey_hmac_cleanup()
121 if (hctx->ktmp.length) { in pkey_hmac_cleanup()
122 OPENSSL_cleanse(hctx->ktmp.data, hctx->ktmp.length); in pkey_hmac_cleanup()
124 OPENSSL_free(hctx->ktmp.data); in pkey_hmac_cleanup()
125 hctx->ktmp.data = NULL; in pkey_hmac_cleanup()
[all …]