Lines Matching refs:ktmp
72 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()
134 if (!hctx->ktmp.data) { in pkey_hmac_keygen()
137 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp); in pkey_hmac_keygen()
189 if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1)) { in pkey_hmac_ctrl()