HomeSort by relevance Sort by last modified time
    Searched defs:ecdh (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ech_key.c 1 /* crypto/ecdh/ecdh_key.c */
12 * The ECDH software is originally written by Douglas Stebila of
76 ECDH_DATA *ecdh = ecdh_check(eckey); local
77 if (ecdh == NULL)
79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
ech_lib.c 1 /* crypto/ecdh/ech_lib.c */
12 * The ECDH software is originally written by Douglas Stebila of
80 const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT;
111 ECDH_DATA *ecdh; local
113 ecdh = ecdh_check(eckey);
115 if (ecdh == NULL)
119 mtmp = ecdh->meth;
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL
259 ECDH_DATA *ecdh; local
268 ECDH_DATA *ecdh; local
    [all...]
  /external/openssl/crypto/ecdh/
ech_key.c 1 /* crypto/ecdh/ecdh_key.c */
12 * The ECDH software is originally written by Douglas Stebila of
76 ECDH_DATA *ecdh = ecdh_check(eckey); local
77 if (ecdh == NULL)
79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
ech_lib.c 1 /* crypto/ecdh/ech_lib.c */
12 * The ECDH software is originally written by Douglas Stebila of
80 const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT;
111 ECDH_DATA *ecdh; local
113 ecdh = ecdh_check(eckey);
115 if (ecdh == NULL)
119 mtmp = ecdh->meth;
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL
259 ECDH_DATA *ecdh; local
268 ECDH_DATA *ecdh; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
s3_lib.c 3271 EC_KEY *ecdh = NULL; local
3629 EC_KEY *ecdh = NULL; local
    [all...]
d1_srvr.c 633 /* For the ECDH ciphersuites when
634 * the client sends its ECDH pub key in
1035 EC_KEY *ecdh=NULL, *ecdhp; local
1168 if (s->s3->tmp.ecdh != NULL)
1170 EC_KEY_free(s->s3->tmp.ecdh);
1175 /* Duplicate the ECDH structure. */
1181 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1187 s->s3->tmp.ecdh=ecdh;
1188 if ((EC_KEY_get0_public_key(ecdh) == NULL) |
    [all...]
s3_clnt.c 347 /* Check if it is anon DH/ECDH */
441 * authentication in ECDH cipher suites with
442 * ECDH (rather than ECDSA) certificates.
444 * message when client's ECDH public key is sent
1374 EC_KEY *ecdh = NULL; local
    [all...]
s3_srvr.c 414 /* Check if it is anon DH or anon ECDH, */
470 * ECDH-anon or ECDHE. In other cases, the
607 /* For the ECDH ciphersuites when
608 * the client sends its ECDH pub key in
919 if (s->s3->tmp.ecdh != NULL)
921 EC_KEY_free(s->s3->tmp.ecdh);
922 s->s3->tmp.ecdh = NULL;
1597 EC_KEY *ecdh=NULL, *ecdhp; local
    [all...]
ssltest.c 367 fprintf(stderr," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
531 EC_KEY *ecdh = NULL; local
754 fprintf(stderr,"ignoring -named_curve, since I'm compiled without ECDH\n");
957 ecdh = EC_KEY_new_by_curve_name(nid);
958 if (ecdh == NULL)
964 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
966 EC_KEY_free(ecdh);
    [all...]
ssl3.h 506 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon18573
  /external/openssl/ssl/
s3_lib.c 3264 EC_KEY *ecdh = NULL; local
3621 EC_KEY *ecdh = NULL; local
    [all...]
d1_srvr.c 634 /* For the ECDH ciphersuites when
635 * the client sends its ECDH pub key in
1046 EC_KEY *ecdh=NULL, *ecdhp; local
1179 if (s->s3->tmp.ecdh != NULL)
1181 EC_KEY_free(s->s3->tmp.ecdh);
1186 /* Duplicate the ECDH structure. */
1192 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1198 s->s3->tmp.ecdh=ecdh;
1199 if ((EC_KEY_get0_public_key(ecdh) == NULL) |
    [all...]
s3_clnt.c 335 /* Check if it is anon DH/ECDH */
430 * authentication in ECDH cipher suites with
431 * ECDH (rather than ECDSA) certificates.
433 * message when client's ECDH public key is sent
1360 EC_KEY *ecdh = NULL; local
    [all...]
s3_srvr.c 415 /* Check if it is anon DH or anon ECDH, */
474 * ECDH-anon or ECDHE. In other cases, the
613 /* For the ECDH ciphersuites when
614 * the client sends its ECDH pub key in
933 if (s->s3->tmp.ecdh != NULL)
935 EC_KEY_free(s->s3->tmp.ecdh);
936 s->s3->tmp.ecdh = NULL;
1619 EC_KEY *ecdh=NULL, *ecdhp; local
    [all...]
ssltest.c 367 fprintf(stderr," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
531 EC_KEY *ecdh = NULL; local
754 fprintf(stderr,"ignoring -named_curve, since I'm compiled without ECDH\n");
963 ecdh = EC_KEY_new_by_curve_name(nid);
964 if (ecdh == NULL)
970 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
972 EC_KEY_free(ecdh);
    [all...]
ssl3.h 506 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon32171
  /external/chromium_org/third_party/openssl/openssl/apps/
s_server.c 486 BIO_printf(bio_err," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
534 BIO_printf(bio_err," -no_ecdhe - Disable ephemeral ECDH\n");
1694 EC_KEY *ecdh=NULL; local
    [all...]
  /external/openssl/apps/
s_server.c 486 BIO_printf(bio_err," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
534 BIO_printf(bio_err," -no_ecdhe - Disable ephemeral ECDH\n");
1694 EC_KEY *ecdh=NULL; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ssl3.h 506 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon18559
  /external/openssl/include/openssl/
ssl3.h 506 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon32157

Completed in 578 milliseconds