Searched refs:digest (Results 251 - 275 of 338) sorted by relevance

<<11121314

/external/vboot_reference/tests/
H A Dvboot_firmware_tests.c186 int VerifyDigest(const uint8_t* digest, const VbSignature *sig, argument
188 TEST_PTR_EQ(digest, digest_returned, "Verifying expected digest");
191 /* Mocked function uses sig size as return value for verifying digest */
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5-internal.c46 * This code implements the MD5 message-digest algorithm.
56 * To compute the message digest of a chunk of bytes, declare an
59 * will fill a supplied 16-byte array with the digest.
147 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) argument
184 os_memcpy(digest, ctx->buf, 16);
H A Dsha1-internal.c273 /* Add padding and return the message digest. */
275 void SHA1Final(unsigned char digest[20], SHA1_CTX* context) argument
292 digest[i] = (unsigned char)
/external/wpa_supplicant_8/src/crypto/
H A Dmd5-internal.c46 * This code implements the MD5 message-digest algorithm.
56 * To compute the message digest of a chunk of bytes, declare an
59 * will fill a supplied 16-byte array with the digest.
147 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) argument
184 os_memcpy(digest, ctx->buf, 16);
H A Dsha1-internal.c273 /* Add padding and return the message digest. */
275 void SHA1Final(unsigned char digest[20], SHA1_CTX* context) argument
292 digest[i] = (unsigned char)
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5-internal.c46 * This code implements the MD5 message-digest algorithm.
56 * To compute the message digest of a chunk of bytes, declare an
59 * will fill a supplied 16-byte array with the digest.
147 void MD5Final(unsigned char digest[16], struct MD5Context *ctx) argument
184 os_memcpy(digest, ctx->buf, 16);
H A Dsha1-internal.c273 /* Add padding and return the message digest. */
275 void SHA1Final(unsigned char digest[20], SHA1_CTX* context) argument
292 digest[i] = (unsigned char)
/external/boringssl/src/crypto/digest/
H A Ddigests.c57 #include <openssl/digest.h>
/external/boringssl/src/crypto/evp/
H A Dp_ec.c63 #include <openssl/digest.h>
79 /* message digest */
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateHolder.java118 * @param digestedObjectType The digest object type.
134 * Returns the digest object type if an object digest info is used.
145 * @return The digest object type or -1 if no object digest info is set.
158 * Returns the other object type ID if an object digest info is used.
161 * digest info is set.
174 * Returns the hash if an object digest info is used.
176 * @return The hash or <code>null</code> if no object digest info is set.
188 * Returns the digest algorith
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/security/
H A DPassword.java254 System.err.println(Credential.MD5.digest(p));
/external/lzma/C/
H A DXz.h87 int XzCheck_Final(CXzCheck *p, Byte *digest);
/external/boringssl/
H A Dsources.mk117 src/crypto/digest/digest.c\
118 src/crypto/digest/digests.c\
317 src/tool/digest.cc\
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dhttpheaders.py1003 def compose(self, digest=None, basic=None, username=None, password=None,
1007 assert not digest
H A Dsession.py161 for char in md5_hash.digest():
/external/openssh/
H A DAndroid.mk32 digest-openssl.c \
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jar ... codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest/ org/apache/commons/codec/language/ org/apache/commons/codec/net ...
/external/skia/src/utils/
H A DSkSHA1.cpp61 void SkSHA1::finish(Digest& digest) { argument
80 // Write out digest.
81 encode(digest.data, this->state);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDexFile.java637 int amt = md.digest(bytes, 12, 20);
639 throw new RuntimeException("unexpected digest write: " + amt +
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
H A DSslUtil.java236 throw new RuntimeException("Could not get SHA-1 digest instance");
238 return new SubjectKeyIdentifier(digester.digest(info.getPublicKeyData().getBytes()));
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketConnectionD00.java343 return md.digest();
/external/harfbuzz_ng/src/
H A Dhb-ot-layout.cc702 return l.would_apply (&c, &hb_ot_layout_from_face (face)->gsub_accels[lookup_index].digest);
864 if (accel.digest.may_have (buffer->cur().codepoint) &&
887 if (accel.digest.may_have (buffer->cur().codepoint) &&
/external/skia/dm/
H A DDM.cpp490 SkMD5::Digest digest; local
491 hash.finish(digest);
493 md5.appendf("%02x", digest.data[i]);
/external/mdnsresponder/mDNSCore/
H A DDNSDigest.c185 #define MD5_DIGEST_LENGTH 16 /* digest length in bytes */
292 * This is a generic 32 bit "collector" for message digest algorithms.
1337 mDNSu8 digest[MD5_LEN]; local
1344 // Init MD5 context, digest inner key pad and message
1392 // digest error (tcode) and other data len (zero) - we'll add them to the rdata later
1400 MD5_Final(digest, &c);
1402 // perform outer MD5 (outer key pad, inner digest)
1405 MD5_Update(&c, digest, MD5_LEN);
1406 MD5_Final(digest, &c);
1412 mDNSPlatformMemCopy(rdata, digest, MD5_LE
[all...]
/external/clang/tools/scan-build/
H A Dscan-build242 # ComputeDigest - Compute a digest of the specified file.
258 # Return the digest.
356 # Compute a digest for the report file. Determine if we have already
359 my $digest = ComputeDigest("$Dir/$FName");
361 if (defined $AlreadyScanned{$digest}) {
367 $AlreadyScanned{$digest} = 1;

Completed in 2738 milliseconds

<<11121314