Home | History | Annotate | Download | only in signapk

Lines Matching full:keyfile

171      * @param keyFile The file containing the private key.  Used to prompt the user.
173 private static String readPassword(File keyFile) {
175 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
192 * @param keyFile The file containing the private key
194 private static PKCS8EncodedKeySpec decryptPrivateKey(byte[] encryptedPrivateKey, File keyFile)
204 char[] password = readPassword(keyFile).toCharArray();
215 System.err.println("signapk: Password for " + keyFile + " may be bad.");