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

/freebsd-13-stable/crypto/openssl/crypto/hmac/
H A Dhm_pmeth.c23 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member in struct:__anon7159
35 hctx->ktmp.type = V_ASN1_OCTET_STRING;
62 if (sctx->ktmp.data) {
63 if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
64 sctx->ktmp.data, sctx->ktmp.length))
80 OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length);
90 if (!hctx->ktmp.data)
92 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
[all...]
/freebsd-13-stable/crypto/openssl/crypto/poly1305/
H A Dpoly1305_pmeth.c23 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member in struct:__anon7211
35 pctx->ktmp.type = V_ASN1_OCTET_STRING;
47 OPENSSL_clear_free(pctx->ktmp.data, pctx->ktmp.length);
62 if (ASN1_STRING_get0_data(&sctx->ktmp) != NULL &&
63 !ASN1_STRING_copy(&dctx->ktmp, &sctx->ktmp)) {
77 if (ASN1_STRING_get0_data(&pctx->ktmp) == NULL)
79 key = ASN1_OCTET_STRING_dup(&pctx->ktmp);
139 !ASN1_OCTET_STRING_set(&pctx->ktmp, ke
[all...]
/freebsd-13-stable/crypto/openssl/crypto/siphash/
H A Dsiphash_pmeth.c23 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member in struct:siphash_pkey_ctx_st
35 pctx->ktmp.type = V_ASN1_OCTET_STRING;
47 OPENSSL_clear_free(pctx->ktmp.data, pctx->ktmp.length);
62 if (ASN1_STRING_get0_data(&sctx->ktmp) != NULL &&
63 !ASN1_STRING_copy(&dctx->ktmp, &sctx->ktmp)) {
77 if (ASN1_STRING_get0_data(&pctx->ktmp) == NULL)
79 key = ASN1_OCTET_STRING_dup(&pctx->ktmp);
143 !ASN1_OCTET_STRING_set(&pctx->ktmp, ke
[all...]
/freebsd-13-stable/crypto/openssl/crypto/engine/
H A Deng_openssl.c428 ASN1_OCTET_STRING ktmp; /* Temp storage for key */ member in struct:__anon7071
440 hctx->ktmp.type = V_ASN1_OCTET_STRING;
468 if (sctx->ktmp.data) {
469 if (!ASN1_OCTET_STRING_set(&dctx->ktmp,
470 sctx->ktmp.data, sctx->ktmp.length))
486 OPENSSL_clear_free(hctx->ktmp.data, hctx->ktmp.length);
496 if (!hctx->ktmp.data)
498 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ec/
H A Dec_pmeth.c192 unsigned char *ktmp = NULL; local
205 if ((ktmp = OPENSSL_malloc(ktmplen)) == NULL) {
209 if (!pkey_ec_derive(ctx, ktmp, &ktmplen))
212 if (!ecdh_KDF_X9_63(key, *keylen, ktmp, ktmplen,
218 OPENSSL_clear_free(ktmp, ktmplen);
/freebsd-13-stable/crypto/openssl/crypto/x509/
H A Dx509_vfy.c1950 EVP_PKEY *ktmp = NULL, *ktmp2; local
1957 ktmp = X509_get0_pubkey(sk_X509_value(chain, i));
1958 if (ktmp == NULL) {
1963 if (!EVP_PKEY_missing_parameters(ktmp))
1966 if (ktmp == NULL) {
1975 EVP_PKEY_copy_parameters(ktmp2, ktmp);
1979 EVP_PKEY_copy_parameters(pkey, ktmp);
/freebsd-13-stable/sys/netpfil/ipfw/
H A Dip_fw_sockopt.c3303 struct opcode_obj_rewrite *ctl3_max, *ktmp, *lo, *hi; local
3312 for (ktmp = lo; ktmp <= hi; ktmp++) {
3313 if (ktmp->classifier != rw[i].classifier)
3317 sz = (ctl3_max - (ktmp + 1)) * sizeof(*ktmp);
3318 memmove(ktmp, ktmp + 1, sz);
/freebsd-13-stable/contrib/libucl/src/
H A Ducl_util.c608 struct ucl_pubkey *key, *ktmp; local
635 LL_FOREACH_SAFE (parser->keys, key, ktmp) {

Completed in 143 milliseconds