Browse Source

HDNode: shorten comment for Q validation

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
56a88b8a70
  1. 3
      src/hdnode.js

3
src/hdnode.js

@ -118,7 +118,8 @@ HDNode.fromBuffer = function(buffer) {
var decode = ECPointFp.decodeFrom(ecparams.getCurve(), data)
assert.equal(decode.compressed, true, 'Invalid public key')
// When importing a serialized extended public key, implementations must verify whether the X coordinate in the public key data corresponds to a point on the curve. If not, the extended public key is invalid.
// Verify that the X coordinate in the public point corresponds to a point on the curve.
// If not, the extended public key is invalid.
decode.Q.validate()
hd = new HDNode(decode.Q, chainCode, params.network)

Loading…
Cancel
Save