| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| H A D | test_engine_dso.c | 84 void *skey, *ckey; in dh_test() local 88 ckey = emalloc(DH_size(client)); in dh_test() 93 csize = DH_compute_key(ckey, server->pub_key, client); in dh_test() 100 if (memcmp(skey, ckey, csize) != 0) in dh_test() 104 free(ckey); in dh_test()
|
| /netbsd-src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| H A D | hash.h | 170 const char *ckey = (const char *) key; in objc_hash_string() local 172 while (*ckey) { in objc_hash_string() 173 ret ^= *ckey++ << ctr; in objc_hash_string()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| H A D | hash.h | 170 const char *ckey = (const char *) key; in objc_hash_string() local 172 while (*ckey) { in objc_hash_string() 173 ret ^= *ckey++ << ctr; in objc_hash_string()
|
| /netbsd-src/sys/net/ |
| H A D | if_wg.c | 991 wg_init_key_and_hash(uint8_t ckey[static WG_CHAINING_KEY_LEN], in wg_algo_generate_keypair() 1000 blake2s(ckey, WG_CHAINING_KEY_LEN, NULL, 0, in wg_algo_dh() 1004 memcpy(hash, ckey, WG_CHAINING_KEY_LEN); in wg_algo_dh() 1007 blake2s_update(&state, ckey, WG_CHAINING_KEY_LEN); in wg_algo_hmac() 1011 WG_DUMP_HASH("ckey", ckey); in wg_algo_hmac() 1141 const uint8_t ckey[static WG_CHAINING_KEY_LEN], in wg_algo_xaead_enc() 1153 WG_DUMP_HASH("ckey", ckey); in wg_algo_xaead_dec() 1156 wg_algo_hmac(tmp1, sizeof(tmp1), ckey, WG_CHAINING_KEY_LE in wg_algo_xaead_dec() 1325 uint8_t ckey[WG_CHAINING_KEY_LEN]; /* [W] 5.4.2: Ci */ wg_fill_msg_init() local 1418 uint8_t ckey[WG_CHAINING_KEY_LEN]; /* [W] 5.4.2: Ci */ wg_handle_msg_init() local 1745 uint8_t ckey[WG_CHAINING_KEY_LEN]; /* [W] 5.4.3: Cr */ wg_fill_msg_resp() local 1856 uint8_t ckey[WG_CHAINING_KEY_LEN]; /* [W] 5.4.3: Cr */ wg_handle_msg_resp() local [all...] |
| /netbsd-src/crypto/external/bsd/openssl.old/dist/demos/certs/apps/ |
| H A D | mkacerts.sh | 18 -key ckey.pem -out creq.pem -new 42 cat ckey.pem >>client.pem
|
| /netbsd-src/crypto/external/bsd/openssl/dist/demos/certs/apps/ |
| H A D | mkacerts.sh | 18 -key ckey.pem -out creq.pem -new 42 cat ckey.pem >>client.pem
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/statem/ |
| H A D | statem_clnt.c | 3069 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 3079 ckey = ssl_generate_pkey(skey); in tls_construct_cke_dhe() 3080 if (ckey == NULL) { in tls_construct_cke_dhe() 3086 dh_clnt = EVP_PKEY_get0_DH(ckey); in tls_construct_cke_dhe() 3094 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 3109 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 3113 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 3127 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 3137 ckey = ssl_generate_pkey(skey); in tls_construct_cke_ecdhe() 3138 if (ckey == NULL) { in tls_construct_cke_ecdhe() [all …]
|
| H A D | statem_srvr.c | 3176 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 3202 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 3203 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 3209 cdh = EVP_PKEY_get0_DH(ckey); in tls_process_cke_dhe() 3218 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3227 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3241 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3271 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3272 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) { in tls_process_cke_ecdhe() 3277 if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) { in tls_process_cke_ecdhe() [all …]
|
| H A D | extensions_srvr.c | 1687 EVP_PKEY *ckey = s->s3->peer_tmp, *skey = NULL; in tls_construct_stoc_key_share() local 1690 if (ckey != NULL) { in tls_construct_stoc_key_share() 1707 if (ckey == NULL) { in tls_construct_stoc_key_share() 1732 skey = ssl_generate_pkey(ckey); in tls_construct_stoc_key_share() 1760 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_construct_stoc_key_share()
|
| H A D | extensions_clnt.c | 1815 EVP_PKEY *ckey = s->s3->tmp.pkey, *skey = NULL; in tls_parse_stoc_key_share() local 1818 if (ckey == NULL || s->s3->peer_tmp != NULL) { in tls_parse_stoc_key_share() 1887 if (skey == NULL || EVP_PKEY_copy_parameters(skey, ckey) <= 0) { in tls_parse_stoc_key_share() 1901 if (ssl_derive(s, ckey, skey, 1) == 0) { in tls_parse_stoc_key_share()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/ssl/statem/ |
| H A D | statem_srvr.c | 2959 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 2981 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 2982 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 2987 if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) { in tls_process_cke_dhe() 2992 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3001 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3008 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3035 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3036 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) { in tls_process_cke_ecdhe() 3041 if (EVP_PKEY_set1_encoded_public_key(ckey, data, i) <= 0) { in tls_process_cke_ecdhe() [all …]
|
| H A D | statem_clnt.c | 2907 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 2920 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_dhe() 2921 if (ckey == NULL) { in tls_construct_cke_dhe() 2926 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 2934 encoded_pub_len = EVP_PKEY_get1_encoded_public_key(ckey, &encoded_pub); in tls_construct_cke_dhe() 2937 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2946 prime_len = EVP_PKEY_get_size(ckey); in tls_construct_cke_dhe() 2964 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2972 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 2981 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_ecdhe() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/tests/kdc/ |
| H A D | check-digest.in | 252 ckey=`grep session-key= cdigest-reply | cut -f2- -d=` 273 if test "X$skey" != "X$ckey" ; then
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/kdc/ |
| H A D | kerberos5.c | 1113 METHOD_DATA *md, Key *ckey) in get_pa_etype_info() argument 1126 ret = make_etype_info_entry(context, &pa.val[0], ckey); in get_pa_etype_info() 1232 METHOD_DATA *md, Key *ckey) in get_pa_etype_info2() argument 1244 ret = make_etype_info2_entry(&pa.val[0], ckey); in get_pa_etype_info2() 1877 Key *ckey = NULL; in _kdc_as_rep() local 1894 r->client, b->etype.val, b->etype.len, NULL, &ckey); in _kdc_as_rep() 1909 if (older_enctype(ckey->key.keytype)) { in _kdc_as_rep() 1911 &error_method, ckey); in _kdc_as_rep() 1916 &error_method, ckey); in _kdc_as_rep() 1931 if (ckey == NULL) { in _kdc_as_rep() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/ |
| H A D | ec_kmeth.c | 225 int (*ckey)(unsigned char **psec, in EC_KEY_METHOD_set_compute_key() 230 meth->compute_key = ckey; in EC_KEY_METHOD_set_compute_key()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/ |
| H A D | ec_kmeth.c | 198 int (*ckey)(unsigned char **psec, in EC_KEY_METHOD_set_compute_key() 203 meth->compute_key = ckey; in EC_KEY_METHOD_set_compute_key()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| H A D | intel_sprite.c | 567 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in skl_program_plane() 916 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in vlv_sprite_ctl() 1022 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in vlv_update_plane() 1304 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in ivb_sprite_ctl() 1436 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in ivb_update_plane() 1615 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in g4x_sprite_ctl() 1748 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in g4x_update_plane() 2182 if (!plane_state->ckey.flags && intel_fb_scalable(fb)) { in skl_plane_check() 2245 struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in intel_plane_set_ckey()
|
| H A D | intel_display_types.h | 612 struct drm_intel_sprite_colorkey ckey; member
|
| H A D | intel_display.c | 4692 const struct drm_intel_sprite_colorkey *key = &plane_state->ckey; in skl_plane_ctl() 6101 if (plane_state->ckey.flags) { in skl_update_scaler_plane()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/demos/certs/ |
| H A D | mkcerts.sh | 26 -keyout ckey.pem -out creq.pem -newkey rsa:1024
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/demos/certs/ |
| H A D | mkcerts.sh | 26 -keyout ckey.pem -out creq.pem -newkey rsa:1024
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
| H A D | store.cc | 920 if (const concrete_binding *ckey in get_overlapping_bindings() local 926 if (ckey->overlaps_p (*iter_ckey)) in get_overlapping_bindings() 2006 if (const concrete_binding *ckey in get_representative_path_vars() local 2012 ckey->get_start_bit_offset (), in get_representative_path_vars() 2013 ckey->get_size_in_bits (), in get_representative_path_vars()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
| H A D | ec.h | 1477 int (*ckey)(unsigned char **psec, size_t *pseclen,
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| H A D | ec.h | 1299 int (*ckey)(unsigned char **psec,
|