Searched refs:ecdh (Results 101 - 125 of 148) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dssltest.c416 EC_KEY *ecdh = NULL; local
766 ecdh = EC_KEY_new_by_curve_name(nid);
767 if (ecdh == NULL)
773 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
775 EC_KEY_free(ecdh);
H A DMakefile234 @echo 'test ecdh'
440 bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
475 ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h
612 ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dssl.h2004 # define SSL_CTX_set_tmp_ecdh(ctx,ecdh) \
2005 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh)
2012 # define SSL_set_tmp_ecdh(ssl,ecdh) \
2013 SSL_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh)
2528 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
2531 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
H A Dssltest.c971 EC_KEY *ecdh = NULL; local
1436 ecdh = EC_KEY_new_by_curve_name(nid);
1437 if (ecdh == NULL) {
1442 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
1443 SSL_CTX_set_tmp_ecdh(s_ctx2, ecdh);
1446 EC_KEY_free(ecdh);
H A Dssl3.h569 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon5002
H A Ds3_clnt.c1382 EC_KEY *ecdh = NULL; local
1796 if ((ecdh = EC_KEY_new()) == NULL) {
1838 if (EC_KEY_set_group(ecdh, ngroup) == 0) {
1844 group = EC_KEY_get0_group(ecdh);
1896 EC_KEY_set_public_key(ecdh, srvr_ecpoint);
1897 s->session->sess_cert->peer_ecdh_tmp = ecdh;
1898 ecdh = NULL;
2041 if (ecdh != NULL)
2042 EC_KEY_free(ecdh);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dssl.h2004 # define SSL_CTX_set_tmp_ecdh(ctx,ecdh) \
2005 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh)
2012 # define SSL_set_tmp_ecdh(ssl,ecdh) \
2013 SSL_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh)
2528 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
2531 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
H A Dssltest.c971 EC_KEY *ecdh = NULL; local
1436 ecdh = EC_KEY_new_by_curve_name(nid);
1437 if (ecdh == NULL) {
1442 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
1443 SSL_CTX_set_tmp_ecdh(s_ctx2, ecdh);
1446 EC_KEY_free(ecdh);
H A Dssl3.h569 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon4653
H A Ds3_clnt.c1382 EC_KEY *ecdh = NULL; local
1796 if ((ecdh = EC_KEY_new()) == NULL) {
1838 if (EC_KEY_set_group(ecdh, ngroup) == 0) {
1844 group = EC_KEY_get0_group(ecdh);
1896 EC_KEY_set_public_key(ecdh, srvr_ecpoint);
1897 s->session->sess_cert->peer_ecdh_tmp = ecdh;
1898 ecdh = NULL;
2041 if (ecdh != NULL)
2042 EC_KEY_free(ecdh);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dengine.h85 #include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Dengine.h85 #include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/engine/
H A Dengine.h86 # include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/engine/
H A Dengine.h86 # include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rand/
H A DMakefile105 rand_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Dssl_lib.c2560 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2563 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2566 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2569 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ecdh/
H A Decdhtest.c1 /* crypto/ecdh/ecdhtest.c */
93 # include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/rand/
H A DMakefile105 rand_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ecdh/
H A Decdhtest.c1 /* crypto/ecdh/ecdhtest.c */
93 # include <openssl/ecdh.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/test/
H A Dmaketests.com159 $ T_D_ECDHTEST := [-.crypto.ecdh]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/test/
H A Dmaketests.com159 $ T_D_ECDHTEST := [-.crypto.ecdh]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A DMakefile125 ec_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
211 ec_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A DMakefile125 ec_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
211 ec_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/
H A DMakefile.bak151 bn ec rsa dsa ecdsa dh ecdh dso engine \
H A DMakefile.org148 bn ec rsa dsa ecdsa dh ecdh dso engine \

Completed in 181 milliseconds

123456