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

  /external/boringssl/src/tool/
digest.cc 172 char hex_digest[EVP_MAX_MD_SIZE * 2]; local
176 hex_digest[i * 2] = kHextable[b >> 4];
177 hex_digest[i * 2 + 1] = kHextable[b & 0xf];
179 *out_hex = std::string(hex_digest, digest_len * 2);
188 std::string hex_digest; local
189 if (!SumFile(&hex_digest, md, source)) {
201 printf("%s %s\n", hex_digest.c_str(),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_hashopenssl.c 185 char *hex_digest; local
201 hex_digest = PyString_AsString(retval);
202 if (!hex_digest) {
212 hex_digest[j++] = c;
215 hex_digest[j++] = c;
shamodule.c 395 char *hex_digest; local
406 hex_digest = PyString_AsString(retval);
407 if (!hex_digest) {
417 hex_digest[j++] = c;
420 hex_digest[j++] = c;
sha256module.c 447 char *hex_digest; local
458 hex_digest = PyString_AsString(retval);
459 if (!hex_digest) {
469 hex_digest[j++] = c;
472 hex_digest[j++] = c;
sha512module.c 513 char *hex_digest; local
524 hex_digest = PyString_AsString(retval);
525 if (!hex_digest) {
535 hex_digest[j++] = c;
538 hex_digest[j++] = c;
  /external/curl/src/
tool_metalink.c 676 (const metalink_digest_def *digest_def, const char *hex_digest)
681 size_t len = strlen(hex_digest);
687 digest[i/2] = hex_to_uint(hex_digest+i);
712 /* Returns nonzero if hex_digest is properly formatted; that is each
715 static int check_hex_digest(const char *hex_digest,
719 for(i = 0; hex_digest[i]; ++i) {
720 char c = hex_digest[i];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
shamodule.c 395 char *hex_digest; local
406 hex_digest = PyString_AsString(retval);
407 if (!hex_digest) {
417 hex_digest[j++] = c;
420 hex_digest[j++] = c;
sha256module.c 447 char *hex_digest; local
458 hex_digest = PyString_AsString(retval);
459 if (!hex_digest) {
469 hex_digest[j++] = c;
472 hex_digest[j++] = c;
sha512module.c 513 char *hex_digest; local
524 hex_digest = PyString_AsString(retval);
525 if (!hex_digest) {
535 hex_digest[j++] = c;
538 hex_digest[j++] = c;

Completed in 839 milliseconds