3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 23:03:04 +00:00

JavaDoc fix to KeyCrypter.

This commit is contained in:
Mike Hearn 2013-03-15 16:08:15 +01:00
parent 7799024c5c
commit 33499aab78

View File

@ -59,10 +59,8 @@ public interface KeyCrypter extends Serializable {
/**
* Encrypt the supplied bytes, converting them into ciphertext.
*
* @param plainBytes
* @param aesKey
* @return encryptedPrivateKey An encryptedPrivateKey containing the encrypted bytes and an initialisation vector.
* @throws keyCrypterException if encryption was unsuccessful
* @throws KeyCrypterException if encryption was unsuccessful
*/
public EncryptedPrivateKey encrypt(byte[] plainBytes, KeyParameter aesKey) throws KeyCrypterException;
}