Coder Social home page Coder Social logo

Comments (7)

dcousens avatar dcousens commented on June 4, 2024 1

Is the seed generated from mneumonicToSeed or mneumonicToSeedHex considering a private key

No

or master private key?

No

The seed is 64-bytes in length, and is used as entropy for private key generation. Private keys are 32-bytes in length, and have some numerical constraints.

from bip39.

dcousens avatar dcousens commented on June 4, 2024 1

Huh, so the private key is just half the seed?

Indeed, after being HMAC'd.
You could simply do a .slice too, or you could HMAC-SHA256, or, or, or.

from bip39.

arshbot avatar arshbot commented on June 4, 2024

Okay thanks. Do you know how I'd generate a private key from the seed?

from bip39.

dcousens avatar dcousens commented on June 4, 2024

BIP32 does the following:

  let I = crypto.hmacSHA512('Bitcoin seed', seed)
  let IL = I.slice(0, 32)

Where IL is the private key (which is checked to be in the range [0, n].
If you intend to use the BIP32 standard, I'd suggest using a library to do this for you.

from bip39.

arshbot avatar arshbot commented on June 4, 2024

Huh, so the private key is just half the seed? (Assuming the seed is 64 bits) I've found a ton of libraries that do this really well, but I'm really trying to perform stuff like privkey, address generation as manually as I can without performing intricate math myself.

from bip39.

arshbot avatar arshbot commented on June 4, 2024

What's done with the right half of the seed if it isn't useful in recreating the wallet's functionality later on?

from bip39.

dcousens avatar dcousens commented on June 4, 2024

@arshbot for BIP32, it is used as the chainCode, which is used in deriving BIP32 child nodes.

from bip39.

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.