mirror of
https://github.com/embarklabs/ethereumjs-wallet.git
synced 2025-02-27 01:20:35 +00:00
Ensure private keys are valid according to the curve
This commit is contained in:
parent
60c9ebaaf7
commit
155513d8e9
3
index.js
3
index.js
@ -14,6 +14,9 @@ function decipherBuffer (decipher, data) {
|
||||
}
|
||||
|
||||
var Wallet = function (priv) {
|
||||
if (!ethUtil.isValidPrivate(priv)) {
|
||||
throw new Error('Private key does not satisfy the curve requirements (ie. it is invalid)')
|
||||
}
|
||||
this.privKey = priv
|
||||
}
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
"homepage": "https://github.com/axic/ethereumjs-wallet",
|
||||
"dependencies": {
|
||||
"aes-js": "^0.2.3",
|
||||
"ethereumjs-util": "^4.2.0",
|
||||
"ethereumjs-util": "^4.3.0",
|
||||
"scrypt.js": "^0.1.0",
|
||||
"uuid": "^2.0.1",
|
||||
"utf8": "^2.1.1"
|
||||
|
@ -9,6 +9,11 @@ describe('.getPrivateKey()', function () {
|
||||
it('should work', function () {
|
||||
assert.equal(fixturewallet.getPrivateKey().toString('hex'), 'efca4cdd31923b50f4214af5d2ae10e7ac45a5019e9431cc195482d707485378')
|
||||
})
|
||||
it('should fail', function () {
|
||||
assert.throws(function () {
|
||||
Wallet.fromPrivateKey(new Buffer('001122', 'hex'))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
describe('.getPrivateKeyString()', function () {
|
||||
|
Loading…
x
Reference in New Issue
Block a user