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

  /external/openssl/crypto/evp/
digest.c 200 if (ctx->digest && ctx->digest->ctx_size)
203 if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size)
206 ctx->md_data=OPENSSL_malloc(type->ctx_size);
259 memset(ctx->md_data,0,ctx->digest->ctx_size);
295 if (in->md_data && out->digest->ctx_size)
301 out->md_data=OPENSSL_malloc(out->digest->ctx_size);
308 memcpy(out->md_data,in->md_data,out->digest->ctx_size);
360 if (ctx->digest && ctx->digest->ctx_size && ctx->md_data
363 OPENSSL_cleanse(ctx->md_data,ctx->digest->ctx_size);
evp_enc.c 159 if (ctx->cipher->ctx_size)
161 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
505 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
589 if (in->cipher_data && in->cipher->ctx_size)
591 out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size);
597 memcpy(out->cipher_data,in->cipher_data,in->cipher->ctx_size);
evp.h 179 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st
312 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st
    [all...]
  /external/openssl/include/openssl/
evp.h 179 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st
312 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st
    [all...]

Completed in 301 milliseconds