(byte[] data)
| 3260 | } |
| 3261 | |
| 3262 | static String sha1(byte[] data) throws NoSuchAlgorithmException { |
| 3263 | return sha("SHA-1", data); |
| 3264 | } |
| 3265 | |
| 3266 | static String sha256(byte[] data) throws NoSuchAlgorithmException { |
| 3267 | return sha("SHA-256", data); |
no test coverage detected