Searched refs:key_length (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-current/sys/contrib/ck/include/
H A Dck_ht.h78 CK_HT_TYPE key_length;
150 ck_ht_entry_key_set(ck_ht_entry_t *entry, const void *key, uint16_t key_length) argument
154 entry->key = (uintptr_t)key | ((uintptr_t)key_length << CK_MD_VMA_BITS);
157 entry->key_length = key_length;
181 return entry->key_length;
200 uint16_t key_length,
205 entry->key = (uintptr_t)key | ((uintptr_t)key_length << CK_MD_VMA_BITS);
210 entry->key_length = key_length;
197 ck_ht_entry_set(struct ck_ht_entry *entry, ck_ht_hash_t h, const void *key, uint16_t key_length, const void *value) argument
[all...]
/freebsd-current/contrib/libcbor/examples/
H A Dcbor2cjson.c56 size_t key_length = cbor_string_length(cbor_map_handle(item)[i].key); local
57 if (key_length > 127) key_length = 127;
60 key_length);
61 key[key_length] = 0;
/freebsd-current/contrib/wpa/src/common/
H A Deapol_common.h66 /* Note: key_length is unaligned */
67 u8 key_length[2]; member in struct:ieee802_1x_eapol_key
81 * key field (of key_length bytes) contains the key in encrypted form;
82 * if packet body length = 44, key field is absent and key_length
H A Dwpa_common.h203 /* Note: key_info, key_length, and key_data_length are unaligned */
205 u8 key_length[2]; /* big endian */ member in struct:wpa_eapol_key
/freebsd-current/sys/contrib/ck/src/
H A Dck_ht.c109 uint16_t key_length)
112 table->h(h, key, key_length, table->seed);
282 uint16_t key_length,
344 if (k != key_length)
356 if (memcmp(pointer, key, key_length) == 0)
454 CK_HT_TYPE_STORE(&priority->key_length, entry->key_length);
498 uint16_t key_length)
539 snapshot->key_length = CK_HT_TYPE_LOAD(&cursor->key_length);
106 ck_ht_hash(struct ck_ht_hash *h, struct ck_ht *table, const void *key, uint16_t key_length) argument
277 ck_ht_map_probe_wr(struct ck_ht_map *map, ck_ht_hash_t h, ck_ht_entry_t *snapshot, ck_ht_entry_t **available, const void *key, uint16_t key_length, CK_HT_TYPE *probe_limit, CK_HT_TYPE *probe_wr) argument
494 ck_ht_map_probe_rd(struct ck_ht_map *map, ck_ht_hash_t h, ck_ht_entry_t *snapshot, const void *key, uint16_t key_length) argument
683 uint16_t key_length; local
[all...]
/freebsd-current/crypto/openssl/providers/implementations/include/prov/
H A Dblake2.h32 uint8_t key_length; /* 2 */ member in struct:blake2s_param_st
56 uint8_t key_length; /* 2 */ member in struct:blake2b_param_st
/freebsd-current/crypto/openssl/providers/implementations/digests/
H A Dblake2b_prov.c86 P->key_length = 0;
105 P->key_length = keylen;
145 memcpy(block, key, P->key_length);
H A Dblake2s_prov.c81 P->key_length = 0;
99 P->key_length = keylen;
138 memcpy(block, key, P->key_length);
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dblake2.h56 uint8_t key_length; /* 2 */ member in struct:blake2b_param_
H A Dblake2b-ref.c132 P->key_length = 0;
155 P->key_length = 0;
189 P->key_length = keylen;
227 P->key_length = keylen;
/freebsd-current/sys/contrib/libb2/
H A Dblake2.h74 uint8_t key_length; // 2 member in struct:__blake2s_param
100 uint8_t key_length; // 2 member in struct:__blake2b_param
H A Dblake2bp.c32 P->key_length = keylen;
51 P->key_length = keylen;
H A Dblake2sp.c31 P->key_length = keylen;
49 P->key_length = keylen;
H A Dblake2b-ref.c191 P->key_length = 0;
214 P->key_length = ( uint8_t ) keylen;
H A Dblake2s-ref.c185 P->key_length = 0;
207 P->key_length = ( uint8_t ) keylen;
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_blake2.h95 uint8_t key_length; /* 2 */
113 uint8_t key_length; /* 2 */
H A Darchive_blake2s_ref.c103 P->key_length = 0;
126 P->key_length = (uint8_t)keylen;
H A Darchive_blake2sp_ref.c49 P->key_length = (uint8_t)keylen;
66 P->key_length = (uint8_t)keylen;
/freebsd-current/sys/dev/iavf/
H A Diavf_vc_common.c693 int msg_len, key_length; local
704 key_length = IAVF_RSS_KEY_SIZE;
705 msg_len = sizeof(struct virtchnl_rss_key) + (sizeof(u8) * key_length) - 1;
714 rss_key_msg->key_len = key_length;
715 bcopy(rss_seed, &rss_key_msg->key[0], key_length);
/freebsd-current/crypto/openssl/providers/implementations/macs/
H A Dblake2_mac_impl.c115 } else if (macctx->params.key_length == 0) {
/freebsd-current/contrib/wpa/src/rsn_supp/
H A Dwpa.c232 WPA_PUT_BE16(reply->key_length, 0);
561 WPA_PUT_BE16(reply->key_length, 0);
563 os_memcpy(reply->key_length, key->key_length, 2);
1642 WPA_PUT_BE16(reply->key_length, 0);
1644 os_memcpy(reply->key_length, key->key_length, 2);
1710 keylen = WPA_GET_BE16(key->key_length);
1939 gtk_len = WPA_GET_BE16(key->key_length);
2049 WPA_PUT_BE16(reply->key_length,
[all...]
/freebsd-current/sys/dev/sfxge/common/
H A Defx_lic.c1103 uint8_t key_length; local
1116 key_length = ((uint8_t *)keyp)[1];
1121 if (key_length > length) {
/freebsd-current/contrib/wpa/src/eapol_supp/
H A Deapol_supp_sm.c728 rx_key_length = WPA_GET_BE16(key->key_length);
730 "EAPOL-Key: type=%d key_length=%d key_index=0x%x",
830 "(key_length=%d)", key_len, rx_key_length);
/freebsd-current/contrib/wpa/src/ap/
H A Dieee802_1x.c166 WPA_PUT_BE16(key->key_length, key_len);
/freebsd-current/crypto/openssl/include/openssl/
H A Dx509.h372 int key_length; member in struct:private_key_st

Completed in 161 milliseconds

12