HomeSort by relevance Sort by last modified time
    Searched refs:pmeth (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/evp/
evp_ctx.c 89 const EVP_PKEY_METHOD *pmeth; local
98 pmeth = evp_pkey_meth_find(id);
100 if (pmeth == NULL) {
114 ret->pmeth = pmeth;
122 if (pmeth->init) {
123 if (pmeth->init(ret) <= 0) {
145 if (ctx->pmeth && ctx->pmeth->cleanup) {
146 ctx->pmeth->cleanup(ctx)
    [all...]
digestsign.c 75 return (op == evp_sign) ? (ctx->pctx->pmeth->sign != NULL)
76 : (ctx->pctx->pmeth->verify != NULL);
209 if (ctx->pctx->pmeth->sign_message == NULL) {
214 return ctx->pctx->pmeth->sign_message(ctx->pctx, out_sig, out_sig_len, data,
225 if (ctx->pctx->pmeth->verify_message == NULL) {
230 return ctx->pctx->pmeth->verify_message(ctx->pctx, sig, sig_len, data, len);
internal.h 177 const EVP_PKEY_METHOD *pmeth; member in struct:evp_pkey_ctx_st

Completed in 63 milliseconds