Merge pull request #1043 from prahaladbelavadi/master
add warning for generating addresses from sha256 hash example
This commit is contained in:
commit
c3eefbef61
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ describe('bitcoinjs-lib (addresses)', function () {
|
|||
|
||||
var keyPair = new bitcoin.ECPair(d)
|
||||
var address = keyPair.getAddress()
|
||||
|
||||
// Generating addresses from SHA256 hashes is not secure if the input to the hash function is predictable
|
||||
// Do not use with predictable inputs
|
||||
assert.strictEqual(address, '1C7zdTfnkzmr13HfA2vNm5SJYRK6nEKyq8')
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue