Verifies the data (computes the secure hash and compares it to the input) @param mac The HMAC generator @param signature The signature to compare against @return true if the signature matches, false otherwise
(Mac mac, byte [] signature)
| 94 | * @return true if the signature matches, false otherwise |
| 95 | */ |
| 96 | private static boolean |
| 97 | verify(Mac mac, byte [] signature) { |
| 98 | return verify(mac, signature, false); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Verifies the data (computes the secure hash and compares it to the input) |
no test coverage detected