Lines Matching defs:data
117 if (id != NULL && EVP_PKEY_CTX_set1_id(pctx, id->data, id->length) <= 0)
375 int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count)
392 return EVP_DigestSignUpdate(ctx, data, count);
394 return EVP_DigestVerifyUpdate(ctx, data, count);
408 return ctx->digest->dupdate(ctx->algctx, data, count);
412 return ctx->update(ctx, data, count);
415 /* The caller can assume that this removes any secret data from the context */
424 /* The caller can assume that this removes any secret data from the context */
646 int EVP_Digest(const void *data, size_t count,
657 && EVP_DigestUpdate(ctx, data, count)
665 const void *data, size_t datalen,
673 ret = EVP_Digest(data, datalen, md, &temp, digest, NULL);