3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 23:32:16 +00:00

Don't dump the salt bytes in toString() and change how it's printed.

This commit is contained in:
Mike Hearn 2013-03-15 16:08:04 +01:00
parent 732c5e631e
commit 7799024c5c
2 changed files with 4 additions and 10 deletions

View File

@ -2163,6 +2163,9 @@ public class Wallet implements Serializable, BlockChainListener {
builder.append(String.format(" %d dead transactions%n", dead.size()));
builder.append(String.format("Last seen best block: (%d) %s%n",
getLastBlockSeenHeight(), getLastBlockSeenHash()));
if (this.keyCrypter != null) {
builder.append(String.format("Encryption: %s%n", keyCrypter.toString()));
}
// Do the keys.
builder.append("\nKeys:\n");
for (ECKey key : keychain) {
@ -2193,10 +2196,6 @@ public class Wallet implements Serializable, BlockChainListener {
builder.append("\nDEAD:\n");
toStringHelper(builder, dead, chain);
}
// Add the keyCrypter so that any setup parameters are in the wallet toString.
if (this.keyCrypter != null) {
builder.append("\nkeyCrypter: " + keyCrypter.toString());
}
return builder.toString();
} finally {
lock.unlock();

View File

@ -139,11 +139,6 @@ public class KeyCrypterScrypt implements KeyCrypter, Serializable {
/**
* Password based encryption using AES - CBC 256 bits.
*
* @param plain The bytes to encrypt
* @param aesKey The AES key to use for encryption
* @return EncryptedPrivateKey containing IV and the encrypted private key
* @throws KeyCrypterException
*/
@Override
public EncryptedPrivateKey encrypt(byte[] plainBytes, KeyParameter aesKey) throws KeyCrypterException {
@ -239,7 +234,7 @@ public class KeyCrypterScrypt implements KeyCrypter, Serializable {
@Override
public String toString() {
return "EncrypterDecrypterScrypt [scryptParameters=" + scryptParameters.toString() + "]";
return "Scrypt/AES";
}
@Override