Searched refs:ckey (Results 1 – 8 of 8) sorted by relevance
/openssl-master/demos/certs/apps/ |
A D | mkacerts.sh | 18 -key ckey.pem -out creq.pem -new 42 cat ckey.pem >>client.pem
|
/openssl-master/crypto/ec/ |
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()
|
/openssl-master/ssl/statem/ |
A D | statem_srvr.c | 2960 EVP_PKEY *ckey = NULL; in tls_process_cke_dhe() local 2982 ckey = EVP_PKEY_new(); in tls_process_cke_dhe() 2983 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) { in tls_process_cke_dhe() 2988 if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) { in tls_process_cke_dhe() 2993 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_dhe() 3002 EVP_PKEY_free(ckey); in tls_process_cke_dhe() 3009 EVP_PKEY *ckey = NULL; in tls_process_cke_ecdhe() local 3036 ckey = EVP_PKEY_new(); in tls_process_cke_ecdhe() 3037 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) { in tls_process_cke_ecdhe() 3048 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_process_cke_ecdhe() [all …]
|
A D | statem_clnt.c | 2899 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_dhe() local 2912 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_dhe() 2913 if (ckey == NULL) { in tls_construct_cke_dhe() 2918 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_dhe() 2938 prime_len = EVP_PKEY_get_size(ckey); in tls_construct_cke_dhe() 2956 EVP_PKEY_free(ckey); in tls_construct_cke_dhe() 2964 EVP_PKEY *ckey = NULL, *skey = NULL; in tls_construct_cke_ecdhe() local 2973 ckey = ssl_generate_pkey(s, skey); in tls_construct_cke_ecdhe() 2974 if (ckey == NULL) { in tls_construct_cke_ecdhe() 2979 if (ssl_derive(s, ckey, skey, 0) == 0) { in tls_construct_cke_ecdhe() [all …]
|
A D | extensions_srvr.c | 1584 EVP_PKEY *ckey = s->s3.peer_tmp, *skey = NULL; in tls_construct_stoc_key_share() local 1588 if (ckey != NULL) { in tls_construct_stoc_key_share() 1603 if (ckey == NULL) { in tls_construct_stoc_key_share() 1633 skey = ssl_generate_pkey(s, ckey); in tls_construct_stoc_key_share() 1660 if (ssl_derive(s, skey, ckey, 1) == 0) { in tls_construct_stoc_key_share() 1675 if (ssl_encapsulate(s, ckey, &ct, &ctlen, 0) == 0) { in tls_construct_stoc_key_share()
|
A D | extensions_clnt.c | 1736 EVP_PKEY *ckey = s->s3.tmp.pkey, *skey = NULL; in tls_parse_stoc_key_share() local 1740 if (ckey == NULL || s->s3.peer_tmp != NULL) { in tls_parse_stoc_key_share() 1831 if (skey == NULL || EVP_PKEY_copy_parameters(skey, ckey) <= 0) { in tls_parse_stoc_key_share() 1844 if (ssl_derive(s, ckey, skey, 1) == 0) { in tls_parse_stoc_key_share() 1855 if (ssl_decapsulate(s, ckey, ct, ctlen, 1) == 0) { in tls_parse_stoc_key_share()
|
/openssl-master/demos/certs/ |
A D | mkcerts.sh | 26 -keyout ckey.pem -out creq.pem -newkey rsa:1024
|
/openssl-master/include/openssl/ |
A D | ec.h | 1475 int (*ckey)(unsigned char **psec, size_t *pseclen,
|
Completed in 26 milliseconds