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

  /external/openssl/crypto/ecdh/
ech_key.c 1 /* crypto/ecdh/ecdh_key.c */
12 * The ECDH software is originally written by Douglas Stebila of
79 ECDH_DATA *ecdh = ecdh_check(eckey); local
80 if (ecdh == NULL)
82 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
77 const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT;
100 ECDH_DATA *ecdh; local
102 ecdh = ecdh_check(eckey);
104 if (ecdh == NULL)
107 mtmp = ecdh->meth;
113 if (ecdh->engine)
115 ENGINE_finish(ecdh->engine);
116 ecdh->engine = NULL
233 ECDH_DATA *ecdh; local
242 ECDH_DATA *ecdh; local
    [all...]
  /external/openssl/ssl/
d1_srvr.c 496 /* For the ECDH ciphersuites when
497 * the client sends its ECDH pub key in
874 EC_KEY *ecdh=NULL, *ecdhp; local
1007 if (s->s3->tmp.ecdh != NULL)
1009 EC_KEY_free(s->s3->tmp.ecdh);
1014 /* Duplicate the ECDH structure. */
1025 ecdh = ecdhp;
1027 s->s3->tmp.ecdh=ecdh;
1028 if ((EC_KEY_get0_public_key(ecdh) == NULL) |
    [all...]
s3_lib.c 2351 EC_KEY *ecdh = NULL; local
2633 EC_KEY *ecdh = NULL; local
    [all...]
s3_clnt.c 317 /* Check if it is anon DH/ECDH */
400 * authentication in ECDH cipher suites with
401 * ECDH (rather than ECDSA) certificates.
403 * message when client's ECDH public key is sent
1225 EC_KEY *ecdh = NULL; local
    [all...]
s3_srvr.c 347 /* Check if it is anon DH or anon ECDH, */
403 * ECDH-anon or ECDHE. In other cases, the
533 /* For the ECDH ciphersuites when
534 * the client sends its ECDH pub key in
1427 EC_KEY *ecdh=NULL, *ecdhp; local
    [all...]
ssltest.c 314 fprintf(stderr," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
484 EC_KEY *ecdh = NULL; local
674 fprintf(stderr,"ignoring -named_curve, since I'm compiled without ECDH\n");
883 ecdh = EC_KEY_new_by_curve_name(nid);
884 if (ecdh == NULL)
890 SSL_CTX_set_tmp_ecdh(s_ctx, ecdh);
892 EC_KEY_free(ecdh);
    [all...]
ssl3.h 488 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon5493
  /external/openssl/apps/
s_server.c 433 BIO_printf(bio_err," -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
473 BIO_printf(bio_err," -no_ecdhe - Disable ephemeral ECDH\n");
1528 EC_KEY *ecdh=NULL; local
    [all...]
  /external/openssl/include/openssl/
ssl3.h 488 EC_KEY *ecdh; /* holds short lived ECDH key */ member in struct:ssl3_state_st::__anon5480

Completed in 75 milliseconds