HomeSort by relevance Sort by last modified time
    Searched refs:hashBytes (Results 1 - 25 of 29) sorted by null

1 2

  /external/guava/guava/src/com/google/common/hash/
HashFunction.java 164 HashCode hashBytes(byte[] input);
174 HashCode hashBytes(byte[] input, int off, int len);
AbstractStreamingHashFunction.java 48 @Override public HashCode hashBytes(byte[] input) {
52 @Override public HashCode hashBytes(byte[] input, int off, int len) {
AbstractNonStreamingHashFunction.java 14 * #hashBytes(byte[], int, int)} method.
102 return hashBytes(stream.byteArray(), 0, stream.length());
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionsTest.java 59 hashFunction.hashBytes(new byte[64], 0, 0);
62 hashFunction.hashBytes(new byte[128], -1, 128);
66 hashFunction.hashBytes(new byte[128], 64, 256 /* too long len */);
70 hashFunction.hashBytes(new byte[64], 0, -1);
MessageDigestHashFunctionTest.java 32 new MessageDigestHashFunction(algorithmName).hashBytes(input).asBytes());
AbstractNonStreamingHashFunctionTest.java 83 public HashCode hashBytes(byte[] input) {
88 public HashCode hashBytes(byte[] input, int off, int len) {
HashCodesTest.java 101 byte[] hashBytes = hashCode.asBytes();
108 assertTrue(Arrays.equals(Arrays.copyOf(hashBytes, bytes), bb));
AbstractStreamingHasherTest.java 220 public HashCode hashBytes(byte[] input) {
225 public HashCode hashBytes(byte[] input, int off, int len) {
226 return hashBytes(Arrays.copyOfRange(input, off, off + len));
HashTestUtils.java 47 int hashBytes = hashbits / 8;
50 byte[] hashes = new byte[hashBytes * 256];
57 System.arraycopy(hash, 0, hashes, i * hashBytes, hash.length);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rsakey.py 62 hashBytes = SHA1(bytearray(bytes))
63 prefixedHashBytes = self._addPKCS1SHA1Prefix(hashBytes)
81 hashBytes = SHA1(bytearray(bytes))
84 prefixedHashBytes1 = self._addPKCS1SHA1Prefix(hashBytes, False)
85 prefixedHashBytes2 = self._addPKCS1SHA1Prefix(hashBytes, True)
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 214 byte[] hashBytes = hash.getBytes(StandardCharsets.ISO_8859_1);
217 return new VerifierEntry(name, MessageDigest.getInstance(algorithm), hashBytes,
390 byte[] hashBytes = hash.getBytes(StandardCharsets.ISO_8859_1);
391 return MessageDigest.isEqual(b, Base64.decode(hashBytes));
  /external/chromium_org/third_party/tlslite/tlslite/
tlsconnection.py     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/ow2/asm/asm-debug-all/4.0/
asm-debug-all-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/15.0/
guava-15.0.jar 

Completed in 347 milliseconds

1 2