Home | History | Annotate | Download | only in ecdh

Lines Matching refs:ecdh

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;
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;
130 ecdh->meth = meth;
259 ECDH_DATA *ecdh;
260 ecdh = ecdh_check(d);
261 if (ecdh == NULL)
263 return(CRYPTO_set_ex_data(&ecdh->ex_data,idx,arg));
268 ECDH_DATA *ecdh;
269 ecdh = ecdh_check(d);
270 if (ecdh == NULL)
272 return(CRYPTO_get_ex_data(&ecdh->ex_data,idx));