/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
digest.c | 204 if (ctx->digest && ctx->digest->ctx_size) 207 if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) 210 ctx->md_data=OPENSSL_malloc(type->ctx_size); 280 memset(ctx->md_data,0,ctx->digest->ctx_size); 317 if (in->md_data && out->digest->ctx_size) 323 out->md_data=OPENSSL_malloc(out->digest->ctx_size); 330 memcpy(out->md_data,in->md_data,out->digest->ctx_size); 383 if (ctx->digest && ctx->digest->ctx_size && ctx->md_data 386 OPENSSL_cleanse(ctx->md_data,ctx->digest->ctx_size);
|
evp_enc.c | 177 if (ctx->cipher->ctx_size) 179 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size); 578 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size); 666 if (in->cipher_data && in->cipher->ctx_size) 668 out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size); 674 memcpy(out->cipher_data,in->cipher_data,in->cipher->ctx_size);
|
evp.h | 180 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st 315 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st [all...] |
/external/openssl/crypto/evp/ |
digest.c | 204 if (ctx->digest && ctx->digest->ctx_size) 207 if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) 210 ctx->md_data=OPENSSL_malloc(type->ctx_size); 280 memset(ctx->md_data,0,ctx->digest->ctx_size); 317 if (in->md_data && out->digest->ctx_size) 323 out->md_data=OPENSSL_malloc(out->digest->ctx_size); 330 memcpy(out->md_data,in->md_data,out->digest->ctx_size); 383 if (ctx->digest && ctx->digest->ctx_size && ctx->md_data 386 OPENSSL_cleanse(ctx->md_data,ctx->digest->ctx_size);
|
evp_enc.c | 177 if (ctx->cipher->ctx_size) 179 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size); 578 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size); 666 if (in->cipher_data && in->cipher->ctx_size) 668 out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size); 674 memcpy(out->cipher_data,in->cipher_data,in->cipher->ctx_size);
|
evp.h | 180 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st 315 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st [all...] |
/external/openssh/ |
cipher-acss.c | 80 acss_cipher.ctx_size = sizeof(EVP_ACSS_KEY);
|
md-sha256.c | 80 ssh_sha256.ctx_size = sizeof(SHA256_CTX);
|
cipher.c | 405 #define EVP_X_STATE_LEN(evp) (evp).cipher->ctx_size
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
evp.h | 180 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st 315 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st [all...] |
/external/openssl/include/openssl/ |
evp.h | 180 int ctx_size; /* how big does the ctx->md_data need to be */ member in struct:env_md_st 315 int ctx_size; /* how big ctx->cipher_data needs to be */ member in struct:evp_cipher_st [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 654 ('ctx_size', c_int), 681 ('ctx_size', c_int), [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 654 ('ctx_size', c_int), 681 ('ctx_size', c_int), [all...] |