Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for SecretKeySpec (0.06 seconds)

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

       * SHA-1 (160 hash bits) hash function and a {@link SecretKeySpec} created from the given byte
       * array and the SHA-1 algorithm.
       *
       * @param key the key material of the secret key
       * @since 20.0
       */
      public static HashFunction hmacSha1(byte[] key) {
        return hmacSha1(new SecretKeySpec(checkNotNull(key), "HmacSHA1"));
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 29.8K bytes
    - Click Count (0)
Back to Top