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

  /external/dhcpcd-6.8.2/crypt/
md5.h 21 #define MD5_DIGEST_LENGTH 16
32 void MD5Final(unsigned char[MD5_DIGEST_LENGTH], MD5_CTX *);
hmac_md5.c 53 uint8_t tk[MD5_DIGEST_LENGTH];
63 key_len = MD5_DIGEST_LENGTH;
87 MD5Update(&context, digest, MD5_DIGEST_LENGTH);
md5.c 218 MD5Final(unsigned char digest[MD5_DIGEST_LENGTH], MD5_CTX *ctx)
  /external/libjpeg-turbo/md5/
md5.h 32 #define MD5_DIGEST_LENGTH 16
33 #define MD5_DIGEST_STRING_LENGTH (MD5_DIGEST_LENGTH * 2 + 1)
  /external/boringssl/src/include/openssl/
md5.h 73 /* MD5_DIGEST_LENGTH is the length of an MD5 digest. */
74 #define MD5_DIGEST_LENGTH 16
83 * |md|, which must have at least |MD5_DIGEST_LENGTH| bytes of space. It
88 * There must be at least |MD5_DIGEST_LENGTH| bytes of space in |out|. */
  /external/mtpd/
l2tp.c 275 uint8_t hash[MD5_DIGEST_LENGTH];
286 int j = i % MD5_DIGEST_LENGTH;
290 MD5_Update(&ctx, &p->value[i - MD5_DIGEST_LENGTH],
291 MD5_DIGEST_LENGTH);
376 static uint8_t response[MD5_DIGEST_LENGTH];
389 uint8_t response[MD5_DIGEST_LENGTH];
390 if (get_attribute_raw(CHALLENGE_RESPONSE, response, MD5_DIGEST_LENGTH)
391 != MD5_DIGEST_LENGTH) {
395 response, MD5_DIGEST_LENGTH);
407 add_attribute_raw(CHALLENGE_RESPONSE, response, MD5_DIGEST_LENGTH);
    [all...]
  /system/security/keystore/
blob.cpp 110 size_t encryptedLength = digestedLength + MD5_DIGEST_LENGTH;
193 digestedLength = encryptedLength - MD5_DIGEST_LENGTH;
194 uint8_t computedDigest[MD5_DIGEST_LENGTH];
196 if (memcmp(mBlob.digest, computedDigest, MD5_DIGEST_LENGTH) != 0) {
blob.h 59 uint8_t digest[MD5_DIGEST_LENGTH];
  /external/curl/lib/vtls/
vtls.h 41 #ifndef MD5_DIGEST_LENGTH
42 #define MD5_DIGEST_LENGTH 16 /* fixed size */
  /external/boringssl/src/crypto/digest/
digests.c 109 NID_md5, MD5_DIGEST_LENGTH, 0 /* flags */, md5_init,
240 SHA1_Final(out + MD5_DIGEST_LENGTH, &ctx->sha1));
245 MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH,
  /external/ipsec-tools/src/racoon/
isakmp_frag.c 173 return ntohl(hp[MD5_DIGEST_LENGTH / sizeof(*hp)]);
341 if (len == MD5_DIGEST_LENGTH) {
351 capp = (int *)(buf->v + MD5_DIGEST_LENGTH);
crypto_openssl.c     [all...]
  /external/boringssl/src/ssl/
s3_enc.c 181 for (i = 0; i < out_len; i += MD5_DIGEST_LENGTH) {
214 if (i + MD5_DIGEST_LENGTH > out_len) {
221 out += MD5_DIGEST_LENGTH;
s3_both.c 447 OPENSSL_COMPILE_ASSERT(EVP_MAX_MD_SIZE > MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH,
472 out + MD5_DIGEST_LENGTH) == 0) {
475 *out_len = MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH;
ssl_cipher.c 786 *out_mac_secret_len = MD5_DIGEST_LENGTH;
    [all...]
  /external/boringssl/src/crypto/cipher/
e_ssl3.c 364 MD5_DIGEST_LENGTH + 16, /* key len (MD5 + RC4) */
366 MD5_DIGEST_LENGTH, /* overhead */
367 MD5_DIGEST_LENGTH, /* max tag length */
e_tls.c 466 MD5_DIGEST_LENGTH + 16, /* key len (MD5 + RC4) */
468 MD5_DIGEST_LENGTH, /* overhead */
469 MD5_DIGEST_LENGTH, /* max tag length */
  /external/curl/lib/vauth/
ntlm.c 583 unsigned char md5sum[MD5_DIGEST_LENGTH];
600 result = Curl_ssl_md5sum(tmp, 16, md5sum, MD5_DIGEST_LENGTH);
  /system/vold/
VolumeManager.h 42 #define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1)
VolumeManager.cpp 223 unsigned char sig[MD5_DIGEST_LENGTH];
243 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
    [all...]
  /external/curl/lib/
curl_ntlm_core.c 76 # define MD5_DIGEST_LENGTH 16
85 # define MD5_DIGEST_LENGTH MD5_LENGTH
  /external/boringssl/src/crypto/md5/
md5.c 66 static uint8_t digest[MD5_DIGEST_LENGTH];
  /external/iputils/
ping6.c 329 static __u8 digest[MD5_DIGEST_LENGTH];
516 __u8 digest[MD5_DIGEST_LENGTH];
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSDigest.c 185 #define MD5_DIGEST_LENGTH 16 /* digest length in bytes */
203 #define MD5_DIGEST_LENGTH 16
    [all...]

Completed in 647 milliseconds