(String methodName, Key key)
| 395 | } |
| 396 | |
| 397 | private static String hmacToString(String methodName, Key key) { |
| 398 | return String.format("Hashing.%s(Key[algorithm=%s, format=%s])", |
| 399 | methodName, |
| 400 | key.getAlgorithm(), |
| 401 | key.getFormat()); |
| 402 | } |
| 403 | |
| 404 | /** |
| 405 | * Returns a hash function implementing the CRC32C checksum algorithm (32 hash bits) as described |
no test coverage detected