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

  /external/boringssl/src/crypto/digest/
digest.c 91 if (ctx->digest && ctx->digest->ctx_size && ctx->md_data) {
92 OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size);
135 if (in->md_data && in->digest->ctx_size) {
139 out->md_data = OPENSSL_malloc(in->digest->ctx_size);
145 memcpy(out->md_data, in->md_data, in->digest->ctx_size);
167 if (ctx->digest && ctx->digest->ctx_size) {
171 if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) {
173 ctx->md_data = OPENSSL_malloc(type->ctx_size);
212 OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size);
internal.h 90 /* ctx_size contains the size, in bytes, of the state of the hash function. */
91 unsigned ctx_size; member in struct:env_md_st
  /external/openssh/
md-sha256.c 80 ssh_sha256.ctx_size = sizeof(SHA256_CTX);
cipher.c 627 #define EVP_X_STATE_LEN(evp) (evp).cipher->ctx_size
  /external/boringssl/src/crypto/cipher/
cipher.c 101 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
125 if (in->cipher_data && in->cipher->ctx_size) {
126 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
131 memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
164 if (ctx->cipher->ctx_size) {
165 ctx->cipher_data = OPENSSL_malloc(ctx->cipher->ctx_size);
  /external/boringssl/src/include/openssl/
cipher.h 507 /* ctx_size contains the size, in bytes, of the per-key context for this
509 unsigned ctx_size; member in struct:evp_cipher_st

Completed in 414 milliseconds