• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/crypto/evp/

Lines Matching refs:pmeth

67 	if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) \
85 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign)
92 if (!ctx->pmeth->sign_init)
94 ret = ctx->pmeth->sign_init(ctx);
104 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign)
116 return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
122 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify)
129 if (!ctx->pmeth->verify_init)
131 ret = ctx->pmeth->verify_init(ctx);
141 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify)
152 return ctx->pmeth->verify(ctx, sig, siglen, tbs, tbslen);
158 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover)
165 if (!ctx->pmeth->verify_recover_init)
167 ret = ctx->pmeth->verify_recover_init(ctx);
177 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover)
189 return ctx->pmeth->verify_recover(ctx, rout, routlen, sig, siglen);
195 if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt)
202 if (!ctx->pmeth->encrypt_init)
204 ret = ctx->pmeth->encrypt_init(ctx);
214 if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt)
226 return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen);
232 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
239 if (!ctx->pmeth->decrypt_init)
241 ret = ctx->pmeth->decrypt_init(ctx);
251 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
263 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
270 if (!ctx || !ctx->pmeth || !ctx->pmeth->derive)
277 if (!ctx->pmeth->derive_init)
279 ret = ctx->pmeth->derive_init(ctx);
288 if (!ctx || !ctx->pmeth || !(ctx->pmeth->derive||ctx->pmeth->encrypt||ctx->pmeth->decrypt) || !ctx->pmeth->ctrl)
301 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 0, peer);
339 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);
354 if (!ctx || !ctx->pmeth || !ctx->pmeth->derive)
366 return ctx->pmeth->derive(ctx, key, pkeylen);