Home | History | Annotate | Download | only in hmac

Lines Matching refs:ktmp

71 	ASN1_OCTET_STRING ktmp; /* Temp storage for key */
82 hctx->ktmp.data = NULL;
83 hctx->ktmp.length = 0;
84 hctx->ktmp.flags = 0;
85 hctx->ktmp.type = V_ASN1_OCTET_STRING;
104 if (sctx->ktmp.data)
106 if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
107 sctx->ktmp.data, sctx->ktmp.length))
117 if (hctx->ktmp.data)
119 if (hctx->ktmp.length)
120 OPENSSL_cleanse(hctx->ktmp.data, hctx->ktmp.length);
121 OPENSSL_free(hctx->ktmp.data);
122 hctx->ktmp.data = NULL;
131 if (!hctx->ktmp.data)
133 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
183 if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1))