/external/boringssl/src/crypto/digest/ |
internal.h | 72 /* md_size contains the size, in bytes, of the resulting digest. */ 73 unsigned md_size; member in struct:env_md_st 84 /* final completes the hash and writes |md_size| bytes of digest to |out|. */
|
/external/tpm2/ |
OsslCryptoEngine.h | 40 /* md_size contains the size, in bytes, of the resulting digest. */ 41 unsigned md_size; member in struct:env_md_st 52 /* final completes the hash and writes |md_size| bytes of digest to |out|. */
|
/external/boringssl/src/crypto/cipher/ |
e_ssl3.c | 38 size_t md_size = EVP_MD_CTX_size(&ssl3_ctx->md_ctx); local 39 size_t pad_len = (md_size == 20) ? 40 : 48; 66 !EVP_DigestUpdate(&md_ctx, tmp, md_size) ||
|
tls_cbc.c | 132 void EVP_tls_cbc_copy_mac(uint8_t *out, unsigned md_size, 144 unsigned mac_start = mac_end - md_size; 153 assert(in_len >= md_size); 154 assert(md_size <= EVP_MAX_MD_SIZE); 161 if (orig_len > md_size + 255 + 1) { 162 scan_start = orig_len - (md_size + 255 + 1); 164 /* div_spoiler contains a multiple of md_size that is used to cause the 168 * The aim of right-shifting md_size is so that the compiler doesn't 170 * to prove that md_size is always even, which I hope is beyond it. */ 171 div_spoiler = md_size >> 1 286 unsigned md_size, md_block_size = 64; local [all...] |
/external/wpa_supplicant_8/src/crypto/ |
tls_openssl.c | 3092 int md_size; local [all...] |