Searched refs:ktmp (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/openssl/crypto/engine/ |
H A D | eng_openssl.c | 445 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member 457 hctx->ktmp.type = V_ASN1_OCTET_STRING; in ossl_hmac_init() 485 if (sctx->ktmp.data) { in ossl_hmac_copy() 486 if (!ASN1_OCTET_STRING_set(&dctx->ktmp, in ossl_hmac_copy() 487 sctx->ktmp.data, sctx->ktmp.length)) in ossl_hmac_copy() 503 OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length); in ossl_hmac_cleanup() 513 if (!hctx->ktmp.data) in ossl_hmac_keygen() 515 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp); in ossl_hmac_keygen() 567 if (!ASN1_OCTET_STRING_set(&hctx->ktmp, p2, p1)) in ossl_hmac_ctrl()
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_pmeth.c | 219 unsigned char *ktmp = NULL; in pkey_ec_kdf_derive() local 232 if ((ktmp = OPENSSL_malloc(ktmplen)) == NULL) { in pkey_ec_kdf_derive() 236 if (!pkey_ec_derive(ctx, ktmp, &ktmplen)) in pkey_ec_kdf_derive() 239 if (!ossl_ecdh_kdf_X9_63(key, *keylen, ktmp, ktmplen, in pkey_ec_kdf_derive() 246 OPENSSL_clear_free(ktmp, ktmplen); in pkey_ec_kdf_derive()
|
/freebsd/sys/netpfil/ipfw/ |
H A D | ip_fw_sockopt.c | 2734 struct opcode_obj_rewrite *ctl3_max, *ktmp, *lo, *hi; in ipfw_del_obj_rewriter() local 2743 for (ktmp = lo; ktmp <= hi; ktmp++) { in ipfw_del_obj_rewriter() 2744 if (ktmp->classifier != rw[i].classifier) in ipfw_del_obj_rewriter() 2748 sz = (ctl3_max - (ktmp + 1)) * sizeof(*ktmp); in ipfw_del_obj_rewriter() 2749 memmove(ktmp, ktmp + 1, sz); in ipfw_del_obj_rewriter()
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1983 EVP_PKEY *ktmp = NULL, *ktmp2; in X509_get_pubkey_parameters() local 1990 ktmp = X509_get0_pubkey(sk_X509_value(chain, i)); in X509_get_pubkey_parameters() 1991 if (ktmp == NULL) { in X509_get_pubkey_parameters() 1995 if (!EVP_PKEY_missing_parameters(ktmp)) in X509_get_pubkey_parameters() 1997 ktmp = NULL; in X509_get_pubkey_parameters() 1999 if (ktmp == NULL) { in X509_get_pubkey_parameters() 2007 if (!EVP_PKEY_copy_parameters(ktmp2, ktmp)) in X509_get_pubkey_parameters() 2012 return EVP_PKEY_copy_parameters(pkey, ktmp); in X509_get_pubkey_parameters()
|
/freebsd/contrib/libucl/src/ |
H A D | ucl_util.c | 608 struct ucl_pubkey *key, *ktmp; local 635 LL_FOREACH_SAFE (parser->keys, key, ktmp) {
|