Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/cpl/trousers/dist/src/tcs/
H A Dtcs_ps.c49 TSS_KEY tmp_key; in fill_key_info() local
62 if ((result = UnloadBlob_TSS_KEY(&offset, tmp_blob, &tmp_key))) in fill_key_info()
65 if (tmp_key.hdr.key12.tag == TPM_TAG_KEY12) { in fill_key_info()
71 memcpy(&key_info->versionInfo, &tmp_key.hdr.key11.ver, sizeof(TSS_VERSION)); in fill_key_info()
72 memcpy(&key_info->bAuthDataUsage, &tmp_key.authDataUsage, in fill_key_info()
74 destroy_key_refs(&tmp_key); in fill_key_info()
103 TSS_KEY tmp_key; in fill_key_info2() local
116 if ((result = UnloadBlob_TSS_KEY(&offset, tmp_blob, &tmp_key))) in fill_key_info2()
119 if (tmp_key.hdr.key12.tag == TPM_TAG_KEY12) { in fill_key_info2()
125 memcpy(&key_info->versionInfo, &tmp_key.hdr.key11.ver, sizeof(TSS_VERSION)); in fill_key_info2()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Dec_key.c422 BIGNUM *tmp_key = NULL; in EC_KEY_set_private_key() local
494 tmp_key = BN_dup(priv_key); in EC_KEY_set_private_key()
495 if (tmp_key == NULL) in EC_KEY_set_private_key()
498 BN_set_flags(tmp_key, BN_FLG_CONSTTIME); in EC_KEY_set_private_key()
501 if (bn_wexpand(tmp_key, fixed_top) == NULL) { in EC_KEY_set_private_key()
502 BN_clear_free(tmp_key); in EC_KEY_set_private_key()
507 key->priv_key = tmp_key; in EC_KEY_set_private_key()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_key.c699 BIGNUM *tmp_key = NULL; in EC_KEY_set_private_key() local
771 tmp_key = BN_dup(priv_key); in EC_KEY_set_private_key()
772 if (tmp_key == NULL) in EC_KEY_set_private_key()
775 BN_set_flags(tmp_key, BN_FLG_CONSTTIME); in EC_KEY_set_private_key()
778 if (bn_wexpand(tmp_key, fixed_top) == NULL) { in EC_KEY_set_private_key()
779 BN_clear_free(tmp_key); in EC_KEY_set_private_key()
784 key->priv_key = tmp_key; in EC_KEY_set_private_key()
/netbsd-src/lib/libc/db/hash/
H A Dhash_bigkey.c531 key->data = (uint8_t *)hashp->tmp_key; in __big_keydata()
554 if (hashp->tmp_key != NULL) in collect_key()
555 free(hashp->tmp_key); in collect_key()
556 if ((hashp->tmp_key = calloc(1, (size_t)totlen)) == NULL) in collect_key()
570 memmove(&hashp->tmp_key[len], (bufp->page) + bp[1], (size_t)mylen); in collect_key()
H A Dhash.h103 char *tmp_key; /* Temporary Buffer for BIG keys */ member
/netbsd-src/external/bsd/iscsi/dist/src/lib/
H A Dparameters.c687 char *tmp_key = NULL; in param_text_parse() local
758 if (tmp_key != NULL) iscsi_free(tmp_key); } in param_text_parse()
789 tmp_key = iscsi_malloc((unsigned)(eq - ptr)); in param_text_parse()
790 if (tmp_key) { in param_text_parse()
791 strncpy(tmp_key, ptr, (unsigned)(eq - ptr)); in param_text_parse()
792 tmp_key[(int)(eq - ptr)] = 0x0; in param_text_parse()
794 … PARAM_TEXT_ADD(head, tmp_key, "NotUnderstood", text_out, text_len_out, textsize, 0, PTP_ERROR); in param_text_parse()
/netbsd-src/lib/libcurses/
H A Dgetch.c375 key_entry_t *tmp_key; in add_key_sequence() local
400 tmp_key = add_new_key(current, sequence[j], KEYMAP_MULTI, 0); in add_key_sequence()
406 current->key[key_ent] = tmp_key; in add_key_sequence()
417 tmp_key = add_new_key(current, sequence[length - 1], KEYMAP_LEAF, in add_key_sequence()
419 current->key[current->mapping[(int)sequence[length - 1]]] = tmp_key; in add_key_sequence()
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/
H A Dhandshake_helper.c1443 EVP_PKEY *tmp_key; in do_handshake_internal() local
1708 if (SSL_get_peer_tmp_key(client.ssl, &tmp_key)) { in do_handshake_internal()
1709 ret->tmp_key_type = pkey_type(tmp_key); in do_handshake_internal()
1710 EVP_PKEY_free(tmp_key); in do_handshake_internal()
/netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/
H A Dregion-model-manager.cc1193 compound_svalue::key_t tmp_key (type, &map); in get_or_create_compound_svalue() local
1194 if (compound_svalue **slot = m_compound_values_map.get (tmp_key)) in get_or_create_compound_svalue()