(byte[] secret)
| 214 | /// Verifies with a shared HMAC secret. The token's `alg` header is read |
| 215 | /// and must be one of the HS family. |
| 216 | public boolean verifyHs256(byte[] secret) { |
| 217 | return verifyHmac(HS256, secret); |
| 218 | } |
| 219 | |
| 220 | /// HMAC verification with HS384. |
| 221 | public boolean verifyHs384(byte[] secret) { |