Home | History | Annotate | Download | only in signapk

Lines Matching defs:password

191      * If a console doesn't exist, reads the password from stdin
192 * If a console exists, reads the password from console and returns it as a string.
200 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
209 if ((pwd = console.readPassword("[%s]", "Enter password for " + keyFile)) != null) {
236 char[] password = readPassword(keyFile).toCharArray();
239 Key key = skFactory.generateSecret(new PBEKeySpec(password));
247 System.err.println("signapk: Password for " + keyFile + " may be bad.");