Searched refs:md_len (Results 1 - 11 of 11) sorted by relevance

/external/webrtc/webrtc/base/
H A Dopenssldigest.cc51 unsigned int md_len; local
52 EVP_DigestFinal_ex(&ctx_, static_cast<unsigned char*>(buf), &md_len);
54 ASSERT(md_len == Size());
55 return md_len;
/external/boringssl/include/openssl/
H A Dsha.h178 unsigned num, md_len; member in struct:sha256_state_st
248 unsigned num, md_len; member in struct:sha512_state_st
H A Dpem.h189 int md_len; /* length of md_data */ member in struct:pem_ctx_st
/external/boringssl/src/include/openssl/
H A Dsha.h178 unsigned num, md_len; member in struct:sha256_state_st
248 unsigned num, md_len; member in struct:sha512_state_st
H A Dpem.h189 int md_len; /* length of md_data */ member in struct:pem_ctx_st
/external/boringssl/src/crypto/sha/
H A Dsha256.c82 sha->md_len = SHA224_DIGEST_LENGTH;
96 sha->md_len = SHA256_DIGEST_LENGTH;
150 * TODO(davidben): The small |md_len| case is one of the few places a low-level
156 switch ((c)->md_len) { \
170 if ((c)->md_len > SHA256_DIGEST_LENGTH) { \
173 for (nn = 0; nn < (c)->md_len / 4; nn++) { \
H A Dsha512.c102 sha->md_len = SHA384_DIGEST_LENGTH;
120 sha->md_len = SHA512_DIGEST_LENGTH;
277 switch (sha->md_len) {
307 /* ... as well as make sure md_len is not abused. */
309 /* TODO(davidben): This bad |md_len| case is one of the few places a
/external/syslinux/core/lwip/src/netif/ppp/
H A Dchap.c814 int outlen, md_len, name_len; local
816 md_len = cstate->resp_length;
818 outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len;
827 PUTCHAR(md_len, outp); /* length of MD */
828 BCOPY(cstate->response, outp, md_len); /* copy MD to buffer */
829 INCPTR(md_len, outp);
/external/boringssl/src/crypto/rsa/
H A Dpadding.c277 size_t md_len = EVP_MD_size(md); local
291 if (md_len <= len) {
295 out += md_len;
296 len -= md_len;
/external/boringssl/src/tool/
H A Dspeed.cc314 unsigned int md_len;
318 EVP_DigestFinal_ex(ctx, digest, &md_len);
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dscsimain.c3661 int sg_fd, k, num, len, md_len, bd_len, longlba, page_num; local
3731 md_len = rsp_buff[0] + 1;
3738 md_len = (rsp_buff[0] << 8) + rsp_buff[1] + 2;
3747 " param=0x%.2x, longlba=%d\n", md_len, medium_type,
3749 if (md_len > rsp_buff_size) {
3753 md_len = rsp_buff_size;
3785 md_len -= bd_len + headerlen; /* length of mode page(s) */
3786 while (md_len > 0) { /* got mode page(s) */
3825 md_len -= len;

Completed in 666 milliseconds