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

  /external/boringssl/src/crypto/digest/
digest.c 96 assert(ctx->pctx == NULL || ctx->pctx_ops != NULL);
97 if (ctx->pctx_ops) {
98 ctx->pctx_ops->free(ctx->pctx);
148 assert(in->pctx == NULL || in->pctx_ops != NULL);
149 if (in->pctx && in->pctx_ops) {
150 out->pctx = in->pctx_ops->dup(in->pctx);
181 assert(ctx->pctx == NULL || ctx->pctx_ops != NULL);
182 if (ctx->pctx_ops) {
183 if (!ctx->pctx_ops->begin_digest(ctx)) {
  /external/boringssl/src/include/openssl/
digest.h 251 /* pctx_ops, if not NULL, points to a vtable that contains functions to
253 const struct evp_md_pctx_ops *pctx_ops; member in struct:env_md_ctx_st
  /external/boringssl/src/crypto/evp/
digestsign.c 87 ctx->pctx_ops = &md_pctx_ops;

Completed in 567 milliseconds