Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 1913) sorted by relevance

12345678910>>...77

/freebsd/crypto/openssl/include/openssl/
H A Dparams.h31 # define OSSL_PARAM_int(key, addr) \ argument
33 # define OSSL_PARAM_uint(key, addr) \ argument
36 # define OSSL_PARAM_long(key, addr) \ argument
38 # define OSSL_PARAM_ulong(key, addr) \ argument
41 # define OSSL_PARAM_int32(key, addr) \ argument
43 # define OSSL_PARAM_uint32(key, addr) \ argument
46 # define OSSL_PARAM_int64(key, addr) \ argument
48 # define OSSL_PARAM_uint64(key, addr) \ argument
51 # define OSSL_PARAM_size_t(key, addr) \ argument
53 # define OSSL_PARAM_time_t(key, addr) \ argument
[all …]
/freebsd/contrib/ntp/sntp/
H A Dcrypto.h18 struct key { struct
19 struct key * next; argument
20 int key_id; argument
21 int key_len; argument
24 char key_seq[64]; argument
27 extern int auth_init(const char *keyfile, struct key **keys); argument
/freebsd/crypto/openssl/crypto/ec/
H A Dec_key.c656 OSSL_LIB_CTX *ossl_ec_key_get_libctx(const EC_KEY *key) in ossl_ec_key_get_libctx()
661 const char *ossl_ec_key_get0_propq(const EC_KEY *key) in ossl_ec_key_get0_propq()
672 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) in EC_KEY_get0_group()
677 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) in EC_KEY_set_group()
690 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) in EC_KEY_get0_private_key()
806 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) in EC_KEY_get_enc_flags()
828 void EC_KEY_set_asn1_flag(EC_KEY *key, int flag) in EC_KEY_set_asn1_flag()
835 int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx) in EC_KEY_precompute_mult()
843 int EC_KEY_get_flags(const EC_KEY *key) in EC_KEY_get_flags()
848 void EC_KEY_set_flags(EC_KEY *key, int flags) in EC_KEY_set_flags()
[all …]
H A Decx_key.c57 void ossl_ecx_key_free(ECX_KEY *key) in ossl_ecx_key_free()
76 void ossl_ecx_key_set0_libctx(ECX_KEY *key, OSSL_LIB_CTX *libctx) in ossl_ecx_key_set0_libctx()
81 int ossl_ecx_key_up_ref(ECX_KEY *key) in ossl_ecx_key_up_ref()
93 unsigned char *ossl_ecx_key_allocate_privkey(ECX_KEY *key) in ossl_ecx_key_allocate_privkey()
H A Dec_kmeth.c58 const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key) in EC_KEY_get_method()
63 int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth) in EC_KEY_set_method()
201 int (*init)(EC_KEY *key), in EC_KEY_METHOD_set_init()
202 void (*finish)(EC_KEY *key), in EC_KEY_METHOD_set_init()
205 int (*set_private)(EC_KEY *key, in EC_KEY_METHOD_set_init()
207 int (*set_public)(EC_KEY *key, in EC_KEY_METHOD_set_init()
219 int (*keygen)(EC_KEY *key)) in EC_KEY_METHOD_set_keygen()
267 int (**pinit)(EC_KEY *key), in EC_KEY_METHOD_get_init()
268 void (**pfinish)(EC_KEY *key), in EC_KEY_METHOD_get_init()
270 int (**pset_group)(EC_KEY *key, in EC_KEY_METHOD_get_init()
[all …]
/freebsd/sys/crypto/des/
H A Ddes_setkey.c67 void des_set_odd_parity(unsigned char *key) in des_set_odd_parity()
75 int des_check_key_parity(const unsigned char *key) in des_check_key_parity()
117 int des_is_weak_key(const unsigned char *key) in des_is_weak_key()
142 int des_set_key(const unsigned char *key, des_key_schedule schedule) in des_set_key()
159 int des_set_key_checked(const unsigned char *key, des_key_schedule schedule) in des_set_key_checked()
169 void des_set_key_unchecked(const unsigned char *key, des_key_schedule schedule) in des_set_key_unchecked()
225 int des_key_sched(const unsigned char *key, des_key_schedule schedule) in des_key_sched()
230 void des_fixup_key_parity(unsigned char *key) in des_fixup_key_parity()
/freebsd/crypto/openssl/crypto/evp/
H A Devp_pkey.c164 int EVP_PKEY_get_attr_count(const EVP_PKEY *key) in EVP_PKEY_get_attr_count()
169 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos) in EVP_PKEY_get_attr_by_NID()
174 int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj, in EVP_PKEY_get_attr_by_OBJ()
180 X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc) in EVP_PKEY_get_attr()
185 X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc) in EVP_PKEY_delete_attr()
190 int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr) in EVP_PKEY_add1_attr()
197 int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key, in EVP_PKEY_add1_attr_by_OBJ()
206 int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key, in EVP_PKEY_add1_attr_by_NID()
215 int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key, in EVP_PKEY_add1_attr_by_txt()
224 const char *EVP_PKEY_get0_type_name(const EVP_PKEY *key) in EVP_PKEY_get0_type_name()
[all …]
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_chk.c22 static int rsa_validate_keypair_multiprime(const RSA *key, BN_GENCB *cb) in rsa_validate_keypair_multiprime()
237 int ossl_rsa_validate_public(const RSA *key) in ossl_rsa_validate_public()
242 int ossl_rsa_validate_private(const RSA *key) in ossl_rsa_validate_private()
247 int ossl_rsa_validate_pairwise(const RSA *key) in ossl_rsa_validate_pairwise()
256 int RSA_check_key(const RSA *key) in RSA_check_key()
261 int RSA_check_key_ex(const RSA *key, BN_GENCB *cb) in RSA_check_key_ex()
/freebsd/crypto/openssl/crypto/
H A Dparam_build.c25 const char *key; member
76 static int param_push_num(OSSL_PARAM_BLD *bld, const char *key, in param_push_num()
127 int OSSL_PARAM_BLD_push_uint(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_uint()
134 int OSSL_PARAM_BLD_push_long(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_long()
140 int OSSL_PARAM_BLD_push_ulong(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_ulong()
147 int OSSL_PARAM_BLD_push_int32(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_int32()
153 int OSSL_PARAM_BLD_push_uint32(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_uint32()
160 int OSSL_PARAM_BLD_push_int64(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_int64()
166 int OSSL_PARAM_BLD_push_uint64(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_uint64()
173 int OSSL_PARAM_BLD_push_size_t(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_size_t()
[all …]
/freebsd/contrib/wpa/src/crypto/
H A Dcrypto_internal-rsa.c22 struct crypto_public_key * crypto_public_key_import(const u8 *key, size_t len) in crypto_public_key_import()
38 struct crypto_private_key * crypto_private_key_import(const u8 *key, in crypto_private_key_import()
72 int crypto_public_key_encrypt_pkcs1_v15(struct crypto_public_key *key, in crypto_public_key_encrypt_pkcs1_v15()
81 int crypto_private_key_decrypt_pkcs1_v15(struct crypto_private_key *key, in crypto_private_key_decrypt_pkcs1_v15()
90 int crypto_private_key_sign_pkcs1(struct crypto_private_key *key, in crypto_private_key_sign_pkcs1()
99 void crypto_public_key_free(struct crypto_public_key *key) in crypto_public_key_free()
105 void crypto_private_key_free(struct crypto_private_key *key) in crypto_private_key_free()
111 int crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key, in crypto_public_key_decrypt_pkcs1()
/freebsd/lib/libnv/tests/
H A Dcnv_tests.cc44 const char *key; in ATF_TEST_CASE_BODY() local
78 const char *key; in ATF_TEST_CASE_BODY() local
113 const char *key; in ATF_TEST_CASE_BODY() local
216 const char *key; in ATF_TEST_CASE_BODY() local
248 const char *key; in ATF_TEST_CASE_BODY() local
294 const char *key; in ATF_TEST_CASE_BODY() local
336 const char *key; in ATF_TEST_CASE_BODY() local
378 const char *key; in ATF_TEST_CASE_BODY() local
421 const char *key; in ATF_TEST_CASE_BODY() local
503 const char *key; in ATF_TEST_CASE_BODY() local
[all …]
/freebsd/lib/libthr/thread/
H A Dthr_pshared.c40 void *key; member
47 #define PSHARED_KEY_HASH(key) (((unsigned long)(key) >> 8) % HASH_SIZE) argument
125 pshared_lookup(void *key) in pshared_lookup()
139 pshared_insert(void *key, void **val) in pshared_insert()
186 pshared_remove(void *key) in pshared_remove()
205 pshared_clean(void *key, void *val) in pshared_clean()
214 pshared_destroy(struct pthread *curthread, void *key) in pshared_destroy()
225 __thr_pshared_offpage(void *key, int doalloc) in __thr_pshared_offpage()
261 __thr_pshared_destroy(void *key) in __thr_pshared_destroy()
H A Dthr_spec.c57 _thr_key_create(pthread_key_t *key, void (*destructor)(void *)) in _thr_key_create()
88 int key, ret; in _thr_key_delete() local
111 int i, key; in _thread_cleanupspecific() local
172 pthread_key_t key; in _thr_setspecific() local
202 pthread_key_t key; in _thr_getspecific() local
230 int key; in _thr_tsd_unload() local
/freebsd/lib/libstdthreads/
H A Dtss.c35 tss_create(tss_t *key, tss_dtor_t dtor) in tss_create()
44 tss_delete(tss_t key) in tss_delete()
51 tss_get(tss_t key) in tss_get()
58 tss_set(tss_t key, void *val) in tss_set()
/freebsd/crypto/openssl/crypto/des/
H A Dset_key.c59 void DES_set_odd_parity(DES_cblock *key) in DES_set_odd_parity()
71 int DES_check_key_parity(const_DES_cblock *key) in DES_check_key_parity()
119 int DES_is_weak_key(const_DES_cblock *key) in DES_is_weak_key()
298 int DES_set_key(const_DES_cblock *key, DES_key_schedule *schedule) in DES_set_key()
315 int DES_set_key_checked(const_DES_cblock *key, DES_key_schedule *schedule) in DES_set_key_checked()
325 void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule) in DES_set_key_unchecked()
391 int DES_key_sched(const_DES_cblock *key, DES_key_schedule *schedule) in DES_key_sched()
/freebsd/usr.sbin/bluetooth/hcsecd/
H A Dparser.y59 static link_key_p key = NULL; variable
231 link_key_p key = NULL; in clean_config() local
243 link_key_p key = NULL, defkey = NULL; in get_key() local
263 link_key_p key = NULL; in dump_config() local
295 link_key_t *key = NULL; in read_keys_file() local
356 link_key_p key = NULL; in dump_keys_file() local
400 free_key(link_key_p key) in free_key()
/freebsd/usr.bin/getconf/
H A Dgetconf.c62 int c, key, valid; in main() local
163 do_onestr(const char *name, int key) in do_onestr()
185 do_onesys(const char *name, int key) in do_onesys()
211 do_onepath(const char *name, int key, const char *path) in do_onepath()
234 do_confstr(const char *name, int key) in do_confstr()
257 do_sysconf(const char *name, int key) in do_sysconf()
272 do_pathconf(const char *name, int key, const char *path) in do_pathconf()
/freebsd/crypto/heimdal/lib/krb5/
H A Dcrypto-des.c41 krb5_keyblock *key) in krb5_DES_random_key()
53 struct _krb5_key_data *key) in krb5_DES_schedule_old()
60 krb5_keyblock *key, in krb5_DES_random_to_key()
120 struct _krb5_key_data *key, in RSA_MD4_checksum()
133 struct _krb5_key_data *key, in RSA_MD4_DES_checksum()
144 struct _krb5_key_data *key, in RSA_MD4_DES_verify()
155 struct _krb5_key_data *key, in RSA_MD5_DES_checksum()
166 struct _krb5_key_data *key, in RSA_MD5_DES_verify()
217 struct _krb5_key_data *key, in evp_des_encrypt_null_ivec()
236 struct _krb5_key_data *key, in evp_des_encrypt_key_ivec()
[all …]
/freebsd/sys/geom/eli/
H A Dg_eli_key_cache.c74 g_eli_key_fill(struct g_eli_softc *sc, struct g_eli_key *key, uint64_t keyno) in g_eli_key_fill()
103 struct g_eli_key *key, *ekey, keysearch; in g_eli_key_allocate() local
133 struct g_eli_key *key; in g_eli_key_find_last() local
146 g_eli_key_replace(struct g_eli_softc *sc, struct g_eli_key *key, uint64_t keyno) in g_eli_key_replace()
164 g_eli_key_remove(struct g_eli_softc *sc, struct g_eli_key *key) in g_eli_key_remove()
240 struct g_eli_key *key; in g_eli_key_destroy() local
304 struct g_eli_key *key, keysearch; in g_eli_key_hold() local
363 struct g_eli_key *key = (struct g_eli_key *)rawkey; in g_eli_key_drop() local
/freebsd/lib/libsecureboot/openpgp/
H A Dopgp_key.c67 decode_key(int tag, unsigned char **pptr, size_t len, OpenPGP_key *key) in decode_key()
161 OpenPGP_key *key; in load_key_buf() local
201 openpgp_trust_add(OpenPGP_key *key) in openpgp_trust_add()
223 OpenPGP_key *key; in openpgp_trust_add_buf() local
240 OpenPGP_key *key, *tkey; in openpgp_trust_revoke() local
265 OpenPGP_key *key; in openpgp_trust_get() local
284 OpenPGP_key *key; in load_key_file() local
335 OpenPGP_key *key; in load_key_id() local
354 OpenPGP_key *key; in openpgp_trust_init() local
/freebsd/usr.sbin/iovctl/
H A Dparse.c46 report_config_error(const char *key, const ucl_object_t *obj, const char *type) in report_config_error()
58 add_bool_config(const char *key, const ucl_object_t *obj, nvlist_t *config) in add_bool_config()
73 add_string_config(const char *key, const ucl_object_t *obj, nvlist_t *config) in add_string_config()
88 add_uint_config(const char *key, const ucl_object_t *obj, nvlist_t *config, in add_uint_config()
113 add_unicast_mac_config(const char *key, const ucl_object_t *obj, nvlist_t *config) in add_unicast_mac_config()
168 add_config(const char *key, const ucl_object_t *obj, nvlist_t *config, in add_config()
206 const char *key; in parse_device_config() local
261 const char *errmsg, *key; in parse_config_file() local
338 const char *key, *device; in find_pf_device() local
374 const char *errmsg, *key; in find_device() local
/freebsd/libexec/revnetgroup/
H A Dhash.c53 const u_char *key; in hash() local
101 hashkey(char *key) in hashkey()
111 lookup(struct group_entry *table[], char *key) in lookup()
144 store(struct group_entry *table[], char *key, char *data) in store()
173 mstore(struct member_entry *table[], char *key, char *data, char *domain) in mstore()
/freebsd/lib/libc/db/test/btree.tests/
H A Dmain.c271 DBT key, data; local
301 DBT data, key; local
341 DBT key; local
376 DBT data, key; local
399 DBT data, key; local
441 DBT key, data; local
471 DBT key, data; local
502 DBT data, key; local
531 DBT data, key; local
559 DBT data, key; local
[all …]
/freebsd/contrib/unbound/sldns/
H A Dkeyraw.c110 uint16_t sldns_calc_keytag_raw(uint8_t* key, size_t keysize) in sldns_calc_keytag_raw()
200 sldns_key_dsa_buf_bignum(unsigned char* key, size_t len, BIGNUM** p, in sldns_key_dsa_buf_bignum()
242 sldns_key_buf2dsa_raw(unsigned char* key, size_t len) in sldns_key_buf2dsa_raw()
285 EVP_PKEY *sldns_key_dsa2pkey_raw(unsigned char* key, size_t len) in sldns_key_dsa2pkey_raw()
376 sldns_key_rsa_buf_bignum(unsigned char* key, size_t len, BIGNUM** n, in sldns_key_rsa_buf_bignum()
419 sldns_key_buf2rsa_raw(unsigned char* key, size_t len) in sldns_key_buf2rsa_raw()
452 EVP_PKEY* sldns_key_rsa2pkey_raw(unsigned char* key, size_t len) in sldns_key_rsa2pkey_raw()
535 sldns_gost2pkey_raw(unsigned char* key, size_t keylen) in sldns_gost2pkey_raw()
560 sldns_ecdsa2pkey_raw(unsigned char* key, size_t keylen, uint8_t algo) in sldns_ecdsa2pkey_raw()
660 sldns_ed255192pkey_raw(const unsigned char* key, size_t keylen) in sldns_ed255192pkey_raw()
[all …]
/freebsd/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c126 const char *key, in _wpa_dbus_add_dict_entry_basic()
236 const char *key, in wpa_dbus_dict_append_int16()
255 const char *key, in wpa_dbus_dict_append_uint16()
274 const char *key, in wpa_dbus_dict_append_int32()
293 const char *key, in wpa_dbus_dict_append_uint32()
312 const char *key, in wpa_dbus_dict_append_object_path()
334 const char *key, in wpa_dbus_dict_append_byte_array()
391 const char *key, in wpa_dbus_dict_begin_string_array()
503 const char *key, in wpa_dbus_dict_append_string_array()
539 const char *key, in wpa_dbus_dict_append_wpabuf_array()
[all …]

12345678910>>...77