fix base64 display bug ECKey.toString missing pad

This commit is contained in:
coretechs 2012-03-11 01:47:01 -05:00
parent d2ba280388
commit 0ebfba0b37

View file

@ -3797,8 +3797,13 @@
ECKey.prototype.toString = function (format) {
format = format || "";
// Get a copy of private key as a byte array
var bytes = this.priv.toByteArrayUnsigned();
// zero pad if private key is less than 32 bytes
while (bytes.length < 32) bytes.unshift(0x00);
if (format === "base64" || format === "b64") {
return Crypto.util.bytesToBase64(this.priv.toByteArrayUnsigned());
return Crypto.util.bytesToBase64(bytes);
}
// Wallet Import Format
else if (format.toString().toLowerCase() == "wif") {