• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/evp/

Lines Matching refs:pmeth

68         if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) \
86 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) {
114 return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
120 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify) {
126 if (!ctx->pmeth->verify_init)
128 ret = ctx->pmeth->verify_init(ctx);
138 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify) {
147 return ctx->pmeth->verify(ctx, sig, siglen, tbs, tbslen);
153 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover) {
159 if (!ctx->pmeth->verify_recover_init)
161 ret = ctx->pmeth->verify_recover_init(ctx);
171 if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover) {
181 return ctx->pmeth->verify_recover(ctx, rout, routlen, sig, siglen);
187 if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt) {
193 if (!ctx->pmeth->encrypt_init)
195 ret = ctx->pmeth->encrypt_init(ctx);
205 if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt) {
215 return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen);
221 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
227 if (!ctx->pmeth->decrypt_init)
229 ret = ctx->pmeth->decrypt_init(ctx);
239 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
249 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
255 if (!ctx || !ctx->pmeth || !ctx->pmeth->derive) {
261 if (!ctx->pmeth->derive_init)
263 ret = ctx->pmeth->derive_init(ctx);
272 if (!ctx || !ctx->pmeth
273 || !(ctx->pmeth->derive || ctx->pmeth->encrypt || ctx->pmeth->decrypt)
274 || !ctx->pmeth->ctrl) {
287 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 0, peer);
322 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);
335 if (!ctx || !ctx->pmeth || !ctx->pmeth->derive) {
345 return ctx->pmeth->derive(ctx, key, pkeylen);