Giter VIP home page Giter VIP logo

Comments (3)

jprichardson avatar jprichardson commented on June 9, 2024

Under https://github.com/cryptocoinjs/bip38#decryptencryptedkey-passhprase, this:

note: To check for an invalid password, you'll want to generate the public address from the output of the decrypt() function. If it doesn't equal the expected address or the address checksum, then chances are, it's an invalid password. The reason that this logic was not included is because it would have required a lot of dependencies: ECKey and Address. Currently, ECKey is pretty heavy on dependencies.

i.e....

  1. Generate the WIF output from decrypt().
  2. Compute address from WIF
  3. Verify address checksum matches checksum on the encrypted key (input to decrypt()).

from bip38.

grabus avatar grabus commented on June 9, 2024

I get it now, thanks!

something like this:

let hex = Bitcoin.base58check.decode(encryptedKey),
  checksum = Bitcoin.crypto.sha256(Bitcoin.crypto.sha256(address)),
  passwordWrong = checksum[0] != hex[3] || checksum[1] != hex[4] || checksum[2] != hex[5] || checksum[3] != hex[6]

console.log(`password is ${ passwordWrong ? 'incorrect' : 'correct' }`)

from bip38.

jprichardson avatar jprichardson commented on June 9, 2024

Closing since this appears to be resolved.

from bip38.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.