(String methodName, Key key)
| 351 | } |
| 352 | |
| 353 | private static String hmacToString(String methodName, Key key) { |
| 354 | return String.format( |
| 355 | "Hashing.%s(Key[algorithm=%s, format=%s])", |
| 356 | methodName, |
| 357 | key.getAlgorithm(), |
| 358 | key.getFormat()); |
| 359 | } |
| 360 | |
| 361 | /** |
| 362 | * Returns a hash function implementing the CRC32C checksum algorithm (32 hash bits) as described |
no test coverage detected