(String user)
| 619 | } |
| 620 | |
| 621 | static String getCloudUser(String user) throws NoSuchAlgorithmException { |
| 622 | return getCloudUser(getSalt(user)); |
| 623 | } |
| 624 | |
| 625 | private static String getCloudUser(byte[] salt) throws NoSuchAlgorithmException { |
| 626 | byte[] huser = MessageDigest.getInstance("SHA256").digest(salt); |
no test coverage detected