Home
last modified time | relevance | path

Searched defs:key (Results 251 – 275 of 1914) sorted by relevance

1...<<11121314151617181920>>...77

/freebsd/contrib/unbound/util/
H A Dlocks.h176 #define ub_thread_key_create(key, f) LOCKRET(pthread_key_create(key, f)) argument
177 #define ub_thread_key_set(key, v) LOCKRET(pthread_setspecific(key, v)) argument
178 #define ub_thread_key_get(key) pthread_getspecific(key) argument
214 #define ub_thread_key_create(key, f) LOCKRET(thr_keycreate(key, f)) argument
215 #define ub_thread_key_set(key, v) LOCKRET(thr_setspecific(key, v)) argument
293 #define ub_thread_key_create(key, f) (*(key)) = NULL argument
294 #define ub_thread_key_set(key, v) (key) = (v) argument
295 #define ub_thread_key_get(key) (key) argument
/freebsd/contrib/ldns/
H A Dradix.c90 ldns_radix_new_node(void* data, uint8_t* key, radix_strlen_t len) in ldns_radix_new_node()
168 ldns_radix_insert(ldns_radix_t* tree, uint8_t* key, radix_strlen_t len, in ldns_radix_insert()
314 void* ldns_radix_delete(ldns_radix_t* tree, const uint8_t* key, radix_strlen_t len) in ldns_radix_delete()
334 ldns_radix_search(ldns_radix_t* tree, const uint8_t* key, radix_strlen_t len) in ldns_radix_search()
380 ldns_radix_find_less_equal(ldns_radix_t* tree, const uint8_t* key, in ldns_radix_find_less_equal()
773 ldns_radix_find_prefix(ldns_radix_t* tree, uint8_t* key, in ldns_radix_find_prefix()
950 ldns_radix_str_create(ldns_radix_array_t* array, uint8_t* key, in ldns_radix_str_create()
999 ldns_radix_array_split(ldns_radix_array_t* array, uint8_t* key, in ldns_radix_array_split()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzio_crypt.c209 zio_crypt_key_destroy_early(zio_crypt_key_t *key) in zio_crypt_key_destroy_early()
221 zio_crypt_key_destroy(zio_crypt_key_t *key) in zio_crypt_key_destroy()
229 zio_crypt_key_init(uint64_t crypt, zio_crypt_key_t *key) in zio_crypt_key_init()
301 zio_crypt_key_change_salt(zio_crypt_key_t *key) in zio_crypt_key_change_salt()
348 zio_crypt_key_get_salt(zio_crypt_key_t *key, uint8_t *salt) in zio_crypt_key_get_salt()
398 uint64_t crypt, crypto_key_t *key, uint8_t *ivbuf, uint_t datalen, in zio_do_crypt_uio_opencrypto()
421 zio_crypt_key_wrap(crypto_key_t *cwkey, zio_crypt_key_t *key, uint8_t *iv, in zio_crypt_key_wrap()
501 uint8_t *mac, zio_crypt_key_t *key) in zio_crypt_key_unwrap()
624 zio_crypt_do_hmac(zio_crypt_key_t *key, uint8_t *data, uint_t datalen, in zio_crypt_do_hmac()
640 zio_crypt_generate_iv_salt_dedup(zio_crypt_key_t *key, uint8_t *data, in zio_crypt_generate_iv_salt_dedup()
[all …]
/freebsd/crypto/openssl/test/
H A Dpoly1305_internal_test.c26 SIZED_DATA key; member
1512 const unsigned char *key = test.key.data; in test_poly1305() local
/freebsd/tools/tools/crypto/
H A Dcryptocheck.c623 const char *key, size_t key_len, char *digest, int *cridp) in ocf_hmac()
658 char *key, *buffer; in run_hmac_test() local
794 char *iv, *key; in run_cipher_test() local
1185 char *iv, *key, *buffer; in run_gmac_test() local
1229 openssl_digest(const struct alg *alg, const char *key, u_int key_len, in openssl_digest()
1278 char *key, *buffer; in run_digest_test() local
1319 const char *key, const char *iv, size_t iv_len, const char *aad, in openssl_aead_encrypt()
1393 const char *key, const char *iv, const char *aad, size_t aad_len, in openssl_aead_decrypt()
1437 const char *key, const char *iv, size_t iv_len, const char *aad, in openssl_ccm_encrypt()
1529 ocf_init_aead_session(const struct alg *alg, const char *key, size_t key_len, in ocf_init_aead_session()
[all …]
/freebsd/crypto/heimdal/lib/hdb/
H A Ddb3.c98 DBT key, value; in DB_seq() local
173 DB__get(krb5_context context, HDB *db, krb5_data key, krb5_data *reply) in DB__get()
199 krb5_data key, krb5_data value) in DB__put()
225 DB__del(krb5_context context, HDB *db, krb5_data key) in DB__del()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_xts.c54 static int aes_xts_check_keys_differ(const unsigned char *key, size_t bytes, in aes_xts_check_keys_differ()
68 static int aes_xts_init(void *vctx, const unsigned char *key, size_t keylen, in aes_xts_init()
97 static int aes_xts_einit(void *vctx, const unsigned char *key, size_t keylen, in aes_xts_einit()
104 static int aes_xts_dinit(void *vctx, const unsigned char *key, size_t keylen, in aes_xts_dinit()
H A Dcipher_des.c73 static int des_init(void *vctx, const unsigned char *key, size_t keylen, in des_init()
106 static int des_einit(void *vctx, const unsigned char *key, size_t keylen, in des_einit()
113 static int des_dinit(void *vctx, const unsigned char *key, size_t keylen, in des_dinit()
/freebsd/sys/crypto/aesni/
H A Daesni_ccm.c93 const unsigned char *key, int nr, in cbc_mac_start()
193 int tag_length, const unsigned char *key, int nr) in AES_CCM_encrypt()
293 const unsigned char *key, int nr) in decrypt_loop()
363 int tag_length, const unsigned char *key, int nr) in AES_CCM_decrypt()
/freebsd/usr.sbin/rpc.yppasswdd/
H A Dyppasswdd_server.c255 DBT key, data; in find_domain() local
319 DBT key = { NULL, 0 }; in update_inplace() local
471 DBT key, data; in yppasswdproc_update_1_svc() local
743 DBT key, data; in yppasswdproc_update_master_1_svc() local
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.c88 DBT key; in symbol_delete() local
149 DBT key; in symtable_close() local
170 DBT key; in symtable_get() local
478 DBT key; in symtable_dump() local
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dlockdep.h43 #define lockdep_set_class(lock, key) argument
45 #define lockdep_set_class_and_name(lock, key, name) argument
49 #define lockdep_register_key(key) do { } while(0) argument
50 #define lockdep_unregister_key(key) do { } while(0) argument
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna.c61 const unsigned char *key) in crypto_onetimeauth_poly1305_donna()
74 const unsigned char *key) in crypto_onetimeauth_poly1305_donna_init()
/freebsd/crypto/openssl/crypto/cast/
H A Dc_enc.c19 void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key) in CAST_encrypt()
51 void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key) in CAST_decrypt()
/freebsd/crypto/openssl/crypto/bf/
H A Dbf_enc.c30 void BF_encrypt(BF_LONG *data, const BF_KEY *key) in BF_encrypt()
69 void BF_decrypt(BF_LONG *data, const BF_KEY *key) in BF_decrypt()
/freebsd/crypto/openssl/providers/implementations/encode_decode/
H A Dendecoder_common.c67 void *key = NULL; in ossl_prov_import_key() local
79 void ossl_prov_free_key(const OSSL_DISPATCH *fns, void *key) in ossl_prov_free_key()
/freebsd/sys/kern/
H A Dkern_umtx.c1031 struct umtx_key key; in do_unlock_umtx() local
1212 struct umtx_key key; in do_unlock_umtx32() local
1329 struct umtx_key key; in kern_umtx_wake() local
1523 struct umtx_key key; in do_unlock_normal() local
1598 struct umtx_key key; in do_wake_umutex() local
1664 struct umtx_key key; in do_wake2_umutex() local
2435 struct umtx_key key; in do_unlock_pi() local
2687 struct umtx_key key; in do_unlock_pp() local
3027 struct umtx_key key; in do_cv_signal() local
3056 struct umtx_key key; in do_cv_broadcast() local
[all …]
/freebsd/crypto/heimdal/kdc/
H A Ddigest.c65 Key *key; in get_digest_key() local
336 krb5_keyblock *key; in _kdc_do_digest() local
806 Key *key = NULL; in _kdc_do_digest() local
1144 Key *key = NULL; in _kdc_do_digest() local
1455 krb5_keyblock *key; in _kdc_do_digest() local
/freebsd/contrib/sendmail/libsmdb/
H A Dsmndbm.c107 smdbm_del(database, key, flags) in smdbm_del() argument
161 smdbm_get(database, key, data, flags) in smdbm_get() argument
195 smdbm_put(database, key, data, flags) in smdbm_put() argument
322 smdbm_cursor_get(cursor, key, value, flags) in smdbm_cursor_get() argument
383 smdbm_cursor_put(cursor, key, value, flags) in smdbm_cursor_put() argument
/freebsd/contrib/wpa/src/crypto/
H A Dcrypto_internal-cipher.c22 u8 key[16]; member
31 struct des3_key_s key; member
44 const u8 *iv, const u8 *key, in crypto_cipher_init()
/freebsd/crypto/heimdal/lib/gssapi/krb5/
H A Dunwrap.c46 krb5_keyblock *key in unwrap_des()
222 krb5_keyblock *key in unwrap_des3()
423 krb5_keyblock *key; in _gsskrb5_unwrap() local
/freebsd/crypto/openssl/crypto/hmac/
H A Dhmac.c25 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, in HMAC_Init_ex()
102 int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md) in HMAC_Init()
221 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, in HMAC()
/freebsd/contrib/ntp/libntp/
H A Da_md5encrypt.c77 const robuffT * key, in make_mac()
198 const u_char * key, /* key pointer */ in MD5authencrypt()
228 const u_char * key, /* key pointer */ in MD5authdecrypt()
/freebsd/crypto/heimdal/lib/krb5/
H A Dtest_pkinit_dh2key.c47 krb5_keyblock key; in test_dh2key() local
69 krb5_data key; member
/freebsd/lib/libc/tests/stdlib/
H A Dtsearch_test.c94 int key = nrand48(random_state) % NKEYS; in ATF_TC_BODY() local
144 for (int key = 0; key < NKEYS; ++key) in ATF_TC_BODY() local

1...<<11121314151617181920>>...77