Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for methodName (0.28 sec)

  1. android/guava/src/com/google/common/hash/Hashing.java

       */
      public static HashFunction hmacSha512(byte[] key) {
        return hmacSha512(new SecretKeySpec(checkNotNull(key), "HmacSHA512"));
      }
    
      private static String hmacToString(String methodName, Key key) {
        return "Hashing."
            + methodName
            + "(Key[algorithm="
            + key.getAlgorithm()
            + ", format="
            + key.getFormat()
            + "])";
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
Back to top