/* --- Encryption/decryption --- */
private KeyParameter aesKeyForPassword(char[] utf16Password) throws WrongPasswordException {
KeyCrypter keyCrypter = wallet.getKeyCrypter();
if (keyCrypter == null) {
throw new WrongPasswordException("Wallet is not protected.");
}