Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for HmacSHA512 (0.12 seconds)

  1. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

            .isEqualTo("Hashing.hmacSha256(Key[algorithm=HmacSHA256, format=RAW])");
    
        assertThat(hmacSha512(SHA512_KEY).toString())
            .isEqualTo("Hashing.hmacSha512(Key[algorithm=HmacSHA512, format=RAW])");
        assertThat(hmacSha512(keyData).toString())
            .isEqualTo("Hashing.hmacSha512(Key[algorithm=HmacSHA512, format=RAW])");
      }
    
      private static void assertMacHashing(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/hash/Hashing.java

       * @throws IllegalArgumentException if the given key is inappropriate for initializing this MAC
       * @since 20.0
       */
      public static HashFunction hmacSha512(Key key) {
        return new MacHashFunction("HmacSHA512", key, hmacToString("hmacSha512", key));
      }
    
      /**
       * Returns a hash function implementing the Message Authentication Code (MAC) algorithm, using the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 29.8K bytes
    - Click Count (0)
Back to Top