(byte[] data)
| 3268 | } |
| 3269 | |
| 3270 | static String md5(byte[] data) throws NoSuchAlgorithmException { |
| 3271 | return sha("MD5", data); |
| 3272 | } |
| 3273 | |
| 3274 | static String sha(String digest, byte[] data) throws NoSuchAlgorithmException { |
| 3275 | byte[] bytes = MessageDigest.getInstance(digest).digest(data); |
no test coverage detected