meth 101 source4/heimdal/lib/hcrypto/dh.c dh->meth = ENGINE_get_DH(dh->engine);
meth 102 source4/heimdal/lib/hcrypto/dh.c if (dh->meth == NULL) {
meth 109 source4/heimdal/lib/hcrypto/dh.c if (dh->meth == NULL)
meth 110 source4/heimdal/lib/hcrypto/dh.c dh->meth = DH_get_default_method();
meth 112 source4/heimdal/lib/hcrypto/dh.c (*dh->meth->init)(dh);
meth 135 source4/heimdal/lib/hcrypto/dh.c (*dh->meth->finish)(dh);
meth 240 source4/heimdal/lib/hcrypto/dh.c if (dh->meth->generate_params)
meth 241 source4/heimdal/lib/hcrypto/dh.c return dh->meth->generate_params(dh, prime_len, generator, cb);
meth 344 source4/heimdal/lib/hcrypto/dh.c return dh->meth->generate_key(dh);
meth 374 source4/heimdal/lib/hcrypto/dh.c return dh->meth->compute_key(shared_key, peer_pub_key, dh);
meth 391 source4/heimdal/lib/hcrypto/dh.c (*dh->meth->finish)(dh);
meth 396 source4/heimdal/lib/hcrypto/dh.c dh->meth = method;
meth 397 source4/heimdal/lib/hcrypto/dh.c (*dh->meth->init)(dh);
meth 473 source4/heimdal/lib/hcrypto/dh.c DH_set_default_method(const DH_METHOD *meth)
meth 475 source4/heimdal/lib/hcrypto/dh.c dh_default_method = meth;
meth 104 source4/heimdal/lib/hcrypto/dh.h const DH_METHOD *meth;
meth 54 source4/heimdal/lib/hcrypto/dsa.c dsa->meth = rk_UNCONST(DSA_get_default_method());
meth 68 source4/heimdal/lib/hcrypto/dsa.c (*dsa->meth->finish)(dsa);
meth 108 source4/heimdal/lib/hcrypto/dsa.h const DSA_METHOD *meth;
meth 111 source4/heimdal/lib/hcrypto/rand.c const RAND_METHOD *meth = selected_meth;
meth 117 source4/heimdal/lib/hcrypto/rand.c if (meth)
meth 118 source4/heimdal/lib/hcrypto/rand.c (*meth->cleanup)();
meth 186 source4/heimdal/lib/hcrypto/rand.c RAND_set_rand_method(const RAND_METHOD *meth)
meth 189 source4/heimdal/lib/hcrypto/rand.c selected_meth = meth;
meth 225 source4/heimdal/lib/hcrypto/rand.c const RAND_METHOD *meth, *old = selected_meth;
meth 229 source4/heimdal/lib/hcrypto/rand.c meth = ENGINE_get_RAND(engine);
meth 230 source4/heimdal/lib/hcrypto/rand.c if (meth == NULL) {
meth 235 source4/heimdal/lib/hcrypto/rand.c meth = NULL;
meth 245 source4/heimdal/lib/hcrypto/rand.c selected_meth = meth;
meth 103 source4/heimdal/lib/hcrypto/rsa.c rsa->meth = ENGINE_get_RSA(rsa->engine);
meth 104 source4/heimdal/lib/hcrypto/rsa.c if (rsa->meth == NULL) {
meth 111 source4/heimdal/lib/hcrypto/rsa.c if (rsa->meth == NULL)
meth 112 source4/heimdal/lib/hcrypto/rsa.c rsa->meth = rk_UNCONST(RSA_get_default_method());
meth 114 source4/heimdal/lib/hcrypto/rsa.c (*rsa->meth->init)(rsa);
meth 135 source4/heimdal/lib/hcrypto/rsa.c (*rsa->meth->finish)(rsa);
meth 186 source4/heimdal/lib/hcrypto/rsa.c return rsa->meth;
meth 203 source4/heimdal/lib/hcrypto/rsa.c (*rsa->meth->finish)(rsa);
meth 210 source4/heimdal/lib/hcrypto/rsa.c rsa->meth = method;
meth 211 source4/heimdal/lib/hcrypto/rsa.c (*rsa->meth->init)(rsa);
meth 305 source4/heimdal/lib/hcrypto/rsa.c RSAFUNC(RSA_public_encrypt, (r)->meth->rsa_pub_enc(flen, f, t, r, p))
meth 306 source4/heimdal/lib/hcrypto/rsa.c RSAFUNC(RSA_public_decrypt, (r)->meth->rsa_pub_dec(flen, f, t, r, p))
meth 307 source4/heimdal/lib/hcrypto/rsa.c RSAFUNC(RSA_private_encrypt, (r)->meth->rsa_priv_enc(flen, f, t, r, p))
meth 308 source4/heimdal/lib/hcrypto/rsa.c RSAFUNC(RSA_private_decrypt, (r)->meth->rsa_priv_dec(flen, f, t, r, p))
meth 343 source4/heimdal/lib/hcrypto/rsa.c if (r->meth->rsa_keygen)
meth 344 source4/heimdal/lib/hcrypto/rsa.c return (*r->meth->rsa_keygen)(r, bits, e, cb);
meth 401 source4/heimdal/lib/hcrypto/rsa.c RSA_set_default_method(const RSA_METHOD *meth)
meth 403 source4/heimdal/lib/hcrypto/rsa.c default_rsa_method = meth;
meth 100 source4/heimdal/lib/hcrypto/rsa.h const RSA_METHOD *meth;
meth 1439 source4/lib/wmi/wmi_wrap.c PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
meth 1441 source4/lib/wmi/wmi_wrap.c res = ((*meth)(mself, v));