Merge pull request #1043 from prahaladbelavadi/master

add warning for generating addresses from sha256 hash example
This commit is contained in:
Daniel Cousens 2018-04-22 23:46:07 +10:00 committed by GitHub
commit c3eefbef61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')
})