fix base64 display bug ECKey.toString missing pad
This commit is contained in:
parent
d2ba280388
commit
0ebfba0b37
1 changed files with 6 additions and 1 deletions
|
@ -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") {
|
||||
|
|
Loading…
Add table
Reference in a new issue