(byte[] data)
| 165 | |
| 166 | /// One-shot SHA-224 hash. |
| 167 | public static byte[] sha224(byte[] data) { |
| 168 | return create(SHA224).digest(data); |
| 169 | } |
| 170 | |
| 171 | /// One-shot SHA-256 hash (recommended general-purpose hash). |
| 172 | public static byte[] sha256(byte[] data) { |
no test coverage detected