(byte[] key, byte[] data)
| 170 | |
| 171 | /// One-shot HMAC-SHA-384. |
| 172 | public static byte[] sha384(byte[] key, byte[] data) { |
| 173 | return create(Hash.SHA384, key).doFinal(data); |
| 174 | } |
| 175 | |
| 176 | /// One-shot HMAC-SHA-512. |
| 177 | public static byte[] sha512(byte[] key, byte[] data) { |