Searched refs:newPasswordChars (Results 1 – 1 of 1) sorted by relevance
363 char[] newPasswordChars = HexEncoding.encode(randomLockSeed); in generateRandomProfilePassword() local364 byte[] newPassword = new byte[newPasswordChars.length]; in generateRandomProfilePassword()365 for (int i = 0; i < newPasswordChars.length; i++) { in generateRandomProfilePassword()366 newPassword[i] = (byte) newPasswordChars[i]; in generateRandomProfilePassword()369 Arrays.fill(newPasswordChars, '\u0000'); in generateRandomProfilePassword()