KeyCrypterScrypt: Print Scrypt iterations in toString().

This commit is contained in:
Andreas Schildbach
2016-07-15 13:31:04 +02:00
parent 10f0990848
commit 4d82e4d7c6

View File

@@ -257,7 +257,7 @@ public class KeyCrypterScrypt implements KeyCrypter {
@Override
public String toString() {
return "Scrypt/AES";
return "AES-" + KEY_LENGTH * 8 + "-CBC, Scrypt (N: " + scryptParameters.getN() + ")";
}
@Override