Home
last modified time | relevance | path

Searched refs:hash_type (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/crypto/third_party/nss/
Dsecsign.cc66 HASH_HashType hash_type; in DerSignData() local
69 hash_type = HASH_AlgSHA1; in DerSignData()
73 hash_type = HASH_AlgSHA224; in DerSignData()
77 hash_type = HASH_AlgSHA256; in DerSignData()
80 hash_type = HASH_AlgSHA384; in DerSignData()
83 hash_type = HASH_AlgSHA512; in DerSignData()
91 std::vector<uint8> hash_data(HASH_ResultLen(hash_type)); in DerSignData()
93 hash_type, &hash_data[0], input->data, input->len); in DerSignData()
/external/chromium_org/third_party/skia/gm/
Dgm_json.py124 def CreateGmActualUrl(test_name, hash_type, hash_digest, argument
137 test_name=test_name, hash_type=hash_type, hash_digest=hash_digest))
140 def CreateGmRelativeUrl(test_name, hash_type, hash_digest): argument
153 return GM_RELATIVE_URL_FORMATTER % (hash_type, test_name, hash_digest)
166 hash_type, test_name, hash_digest = GM_RELATIVE_URL_RE.match(url).groups()
167 return (test_name, hash_type, hash_digest)
/external/skia/gm/
Dgm_json.py118 def CreateGmActualUrl(test_name, hash_type, hash_digest, argument
131 test_name=test_name, hash_type=hash_type, hash_digest=hash_digest))
134 def CreateGmRelativeUrl(test_name, hash_type, hash_digest): argument
147 return GM_RELATIVE_URL_FORMATTER % (hash_type, test_name, hash_digest)
160 hash_type, test_name, hash_digest = GM_RELATIVE_URL_RE.match(url).groups()
161 return (test_name, hash_type, hash_digest)
/external/chromium_org/crypto/
Dec_signature_creator_nss.cc27 HASH_HashType hash_type, in SignData() argument
36 std::vector<uint8> hash_data(HASH_ResultLen(hash_type)); in SignData()
38 hash_type, &hash_data[0], input->data, input->len); in SignData()
/external/chromium_org/content/child/webcrypto/nss/
Dsha_nss.cc96 HASH_HashType hash_type = WebCryptoAlgorithmToNSSHashType(algorithm_id_); in Init() local
98 if (hash_type == HASH_AlgNULL) in Init()
101 hash_context_ = HASH_Create(hash_type); in Init()
/external/chromium_org/third_party/webrtc/base/
Dnssidentity.cc305 HASH_HashType hash_type; in GetDigestObject() local
308 hash_type = HASH_AlgSHA1; in GetDigestObject()
312 hash_type = HASH_AlgSHA224; in GetDigestObject()
315 hash_type = HASH_AlgSHA256; in GetDigestObject()
317 hash_type = HASH_AlgSHA384; in GetDigestObject()
319 hash_type = HASH_AlgSHA512; in GetDigestObject()
324 ho = HASH_GetHashObject(hash_type); in GetDigestObject()
/external/chromium_org/third_party/skia/tools/
Dsvndiff.py120 def _CreateGSUrl(imagename, hash_type, hash_digest): argument
131 hash_type=hash_type,
156 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5,
167 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5,
/external/skia/tools/
Dsvndiff.py120 def _CreateGSUrl(imagename, hash_type, hash_digest): argument
131 hash_type=hash_type,
156 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5,
167 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5,
/external/chromium_org/third_party/skia/gm/rebaseline_server/
Ddownload_actuals.py80 (hash_type, hash_digest) = results_of_this_type[image_name]
82 test_name=test, hash_type=hash_type, hash_digest=hash_digest,
Dcompare_to_expectations.py138 _, hash_type, hash_digest = gm_json.SplitGmRelativeUrl(
140 allowed_digests = [[hash_type, int(hash_digest)]]
Dresults.py291 hash_type=hashtype_and_digest[0],
/external/skia/gm/rebaseline_server/
Ddownload_actuals.py78 (hash_type, hash_digest) = results_of_this_type[image_name]
80 test_name=test, hash_type=hash_type, hash_digest=hash_digest,
Dcompare_to_expectations.py128 _, hash_type, hash_digest = gm_json.SplitGmRelativeUrl(
130 allowed_digests = [[hash_type, int(hash_digest)]]
Dresults.py270 hash_type=hashtype_and_digest[0],
/external/chromium_org/third_party/brotli/src/brotli/enc/
Dbackward_references.h35 Hashers::Type hash_type,
Dbackward_references.cc244 Hashers::Type hash_type, in CreateBackwardReferences() argument
246 switch (hash_type) { in CreateBackwardReferences()
/external/chromium_org/native_client_sdk/src/build_tools/
Dmanifest_util.py199 def GetChecksum(self, hash_type='sha1'): argument
201 return self['checksum'][hash_type]