Android Utililty Methods Salt Create

List of utility methods to do Salt Create

Description

The list of methods to do Salt Create are organized into topic(s).

Method

byte[]generateSalt()
generate Salt
SecureRandom random = SecureRandom.getInstance("SHA1PRNG");
byte[] salt = new byte[8];
random.nextBytes(salt);
return salt;