What are BIP39, BIP32, and BIP44? (2024)

Articles about cryptocurrency wallets are dotted with quite a few references to a mysterious-sounding "BIP39." Once you learn a little about it, you see that BIP39 is actually not mysterious at all - in fact, its very purpose is to make encryption keys less mysterious for people to work with.

TL;DR

BIP39 is a common and useful standard in crypto wallets.

BIP39 defines how wallets create seed phrases and generate encryption keys.

It is critically important that the numbers selected to create the BIP39 seed phrase be random!

A BIP39 seed phrase created with appropriate randomness can not be guessed through brute force, because there are simply too many permutations.

In addition, BIP39 defines the passphrase option, that adds a moderate amount of additive protection in case your seed phrase is stolen or otherwise accidentally exposed. However, it also adds some risk, so it is recommended for more experienced users.

BIP32 and BIP44 are related standards that have paved the way for other wallet features, making it more convenient for users to manage their crypto assets.

What is BIP39?

BIP39 is a design implementation that lays out how cryptocurrency wallets create the set of words (or "mnemonic codes") that make up a mnemonic sentence, and how the wallet turns them into a binary "seed" that is used to create encryption keys, which are then are used to execute cryptocurrency transactions.

In setting guidelines for how wallets do this, BIP39 simplifies cryptocurrency for us. (Can you imagine how complicated it would be if every wallet had its own way of doing things?)

It isn't necessary to know all the details of BIP39 in order to use cryptocurrency - but you would certainly benefit from knowing a little about it.

Why is BIP39 important?

BIP39 is a great icebreaker at co*cktail parties! Well ... maybe not, but if you want to purchase some cryptocurrency, and have decided to set up your own cryptocurrency wallet, it becomes relevant if your choice of wallet supports BIP39. If you use a wallet that implements BIP39, and let's say in the future you decide to migrate your keys to a different wallet, you can re-create your crypto holdings in your new wallet by feeding it your original BIP39 mnemonic sentence. This works because BIP39 is supported by so many wallet manufacturers. As a result, not only does BIP39 simplify wallet and key management, it also opens the door to much simpler wallet migration. Although it is a "Bitcoin Improvement Proposal," in practice, BIP39 is a de facto standard that has greatly evolved the cryptocurrency industry.

Why is it called "BIP39?"

BIP39 is just one of a set of multiple technical design documents introduced by the cryptocurrency community since Bitcoin's inception. Its name comes from the fact that it was the 39th Bitcoin Improvement Proposal (BIP). It actually has a longer formal title: "Mnemonic code for generating deterministic keys" -- a bit of a mouthful -- so you can think of "BIP39" as its nickname. BIP39 has turned out to be one of the most widely-used BIPs, and it's now implemented by many wallet manufacturers, and used for many more cryptocurrencies than just Bitcoin.

What Is a BIP39 mnemonic sentence / seed phrase?

A BIP39 mnemonic sentence is a set of words (most commonly 12 or 24) that we can interact with more successfully than other characters that aren't words (bits and numbers and the like). BIP39's purpose in introducing the use of mnemonic words is to reduce the errors that often occur when we try to communicate long strings of unfamiliar characters. The wallet handles the heavy lifting of converting the mnemonic words through a process of complex hashing, salting, and checksum operations into a binary "seed," which is then used to generate the all-important private and public encryption keys.

It's very important that the mnemonic sentences are generated from randomly selected numbers! These numbers can be generated in a variety of different ways, which are described in other articles here, like "What is an RNG" and Seed Phrase Generation.

What is a passphrase for BIP39 Seed phrase?

There is an option for users to add a password for a seed phrase. It is also defined by the BIP39 standard.

Take note to avoid confusion:
- BIP39 is a Seed phrase is a set of 12 or 24 words from the dictionary, it is a main secret,
- while passphrase is an option, that could be used, or not, as an additional totally random secret.

By default, some cryptocurrency wallets disable the use of the optional passphrase. Although it can add some security, it also adds complexity. If you set a passphrase, your backup strategy has just gotten more complicated: you now have two important pieces of information (your mnemonic sentence and your passphrase) which are critical to store securely. This additional complexity increases the risk of misplacing the passphrase, and thus losing your cryptocurrency.

How much security does a passphrase add? Because the BIP39 seed phrase itself offers an incredibly high level of protection against being guessed, the addition of a passphrase actually doesn't significantly reduce the risk of a brute-force guessing attack. Instead, the primary purpose of a passphrase is to add an extra layer of security to protect against the possibility that your seed phrase may be accidentally revealed to someone.

However, being shorter and less random than the seed phrase itself, the passphrase likely could be guessed eventually with a brute-force attack. If someone did gain access to your seed phrase, the level of protection that a passphrase offer is short-lived. You might have a chance of saving your cryptocurrency from theft only if you noticed that someone had gained access to your seed phrase before they were able to brute-force guess your passphrase. In practice, this could be days or weeks, depending on how hard to guess it was. But is that limited increase in security worth the increased risk of loss of the passphrase? Based on your individual situation, you can decide that for yourself, but you can see why many experts recommend against setting a passphrase.

How likely is your BIP39 seed phrase to be guessed?

A mnemonic sentence constructed from random inputs is much more unique than most people can possibly imagine. For example, in a 24-word BIP39 sentence, there are 2048 to the 24th power possible combinations of words (or stated another way, around 3 x 10 to the 79th power). To try to comprehend how enormous this number is, it's often compared to an estimate of the total number of atoms in the known universe. In practice, it is effectively unguessable with today's technology.

Why are BIP39 words chosen from a limited dictionary?

BIP39 wordlists may seem arbitrary, but they are not - they are carefully chosen to reduce the chance of mis-specification. Words in a BIP39 wordlist are selected with the parameters in such a way that they don't have synonyms, don't have alternative spellings, don't have only 1 character variation with other words in the list, and aren't profane. These rules apply for every language. In addition, the first four characters of each word are unique to each wordlist, which is convenient when typing them into hardware wallets with limited input mechanisms, stamping them onto steel cards, or backing them up in any other form.

BIP39 wordlists can be seen here: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md).

Also, you don't necessarily have to remember this, but BIP39 wordlists have 2048 words in them. The reason for this is because it aligns with how BIP39 uses 32-bit blocks of entropy (random inputs) plus a checksum bit sequenced into a long binary string that is divisible into 11-bit numbers. Each of those numbers can hold up to 2048 bits. In short, 2048 words are all that are needed to achieve extremely high levels of entropy.

Do you need to understand BIP39 mathematics?

As a user of a cryptocurrency wallet, you don't necessarily need to understand the precise details of BIP39 calculations. However, you might want to understand that they include the generation of a checksum of random numbers, and this is used as an integrity check. A checksum is a small piece of data that allows you to check if another piece of data is the same as expected. This checksum is included in the last mnemonic code word of a sequence, and it helps wallets to verify the validity of every mnemonic sentence. So if a user types in a set of words and it fails validation because the checksum isn't as expected, there is likely a typo in what the user entered.

BIP39's other mathematical functions transform its inputs (the random numbers plus the optional passphrase) through one-way functions that guarantee that they can not be reverse-engineered from the public key.

If you'd like to do a deep dive, and understand the exact mechanisms of how BIP39 wallets convert mnemonic codes into a binary seed, there is a description in the design document at https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki.

Vault12 also has a more detailed description in "How to Generate a Seed Phrase."

What are BIP32 and BIP44?

As described in this article, the BIP39 standard describes how a seed phrase is constructed.

Related to BIP39, the most prominent wallet standards include BIP32 and BIP44:

BIP32 ("Hierarchical deterministic wallets") lays out a framework for Hierarchical Deterministic wallets (HD Wallets) for Bitcoin so that the wallet software can control multiple separate Bitcoin accounts using a single seed phrase.

Furthermore, BIP44 ("Multi-account hierarchy for deterministic wallets") defines the same organizational hierarchy for managing multiple accounts in deterministic wallets for all other than Bitcoin cryptocurrencies, like Ethereum, Dogecoin, etc.

BIP32 and BIP44 work together to add flexibility, privacy, and interoperability to HD Wallets. HD Wallets extend the capabilities of deterministic wallets, allowing for the management of a huge number of keys, all of which are derived from the original BIP39 mnemonic sentence (seed phrase).

For the purposes of the guides on our website, we will focus on how to manage the BIP39 seed phrases, since it is supported by every modern crypto wallet, and it is the core thing to understand and be able to properly backup almost any crypto assets. However, you may come across wallets like Coinomi which also use BIP44 and default to 24-word seed phrases.

Feel free to learn more about all of the BIP cryptocurrency standards that may be relevant to you!

What are BIP39, BIP32, and BIP44? (2024)

FAQs

What are BIP39, BIP32, and BIP44? ›

BIP44 is an extension of BIP32, which introduced the concept of Hierarchical Deterministic (HD) wallets, and BIP39, which outlined a method for creating a mnemonic sentence as a backup recovery seed. BIP44 puts forth a specific hierarchy for wallet structures that improves organization, utility, and compatibility.

What is BIP32? ›

Bitcoin Improvement Proposal 32, or BIP32, is a protocol that introduced Hierarchical Deterministic (HD) wallets into the world of cryptocurrency.

What is the purpose of BIP39? ›

The idea behind BIP39 was to create a process that could be universally adopted, ensuring cross-compatibility between different wallets. Check out GitHub for even more information here.

What is the bip 39 list? ›

BIP 39 is the use of a mnemonic phrase -- a group of easy to remember words -- to serve as your back up recovery in the event your wallet fails. Many wallets utilize the BIP 39 standard, but be aware it is not the only requirement to recover your coins. These words are pulled from a specific list of 2048 words.

What is bit 39? ›

BIP39 is a protocol that outlines how crypto wallets generate a string of words to create a mnemonic sentence. The crypto wallet converts these words into a binary seed, which then produces a set of keys that encrypt and decrypt crypto transactions.

What is the difference between BiP 32 and BiP 44? ›

BIP 44 is a specific application of BIP 32. It defines a multi-account hierarchy for deterministic wallets, providing a standardized way to organize keys for different cryptocurrency accounts within the same wallet.

What is BIP39 and BIP44? ›

BIP44 is an extension of BIP32, which introduced the concept of Hierarchical Deterministic (HD) wallets, and BIP39, which outlined a method for creating a mnemonic sentence as a backup recovery seed. BIP44 puts forth a specific hierarchy for wallet structures that improves organization, utility, and compatibility.

What is the difference between BIP32 and BIP39? ›

BIP39 makes complex keys manageable, BIP32 introduces a system for creating multiple keys, and BIP44 organises these keys in a user-friendly manner. Together, these standards make using and securing crypto more secure and user-friendly, which will be a key benefit to mass adoption over the years to come.

Which wallets use BIP39? ›

BIP39 Wallet List
Hardware WalletsBIP39Recovery Support
TrezorBIP39 DocumentationSupport
LedgerBIP39 DocumentationSupport
ColdcardBIP39 DocumentationSupport
BitBoxBIP39 DocumentationSupport
1 more row
Apr 11, 2024

Does Ledger use BIP39? ›

Ledger uses a standard called BIP 39 (opens in a new tab) for the generation and interpretation of the master seed on all of our devices. BIP 39 is an industry standard used by many other hierarchical deterministic wallets.

What is the BIP39 word check? ›

The Bitcoin Improvement Proposal 39 wordlist (or 'BIP39' for short) is a standardized set of words for the recovery and backup of a bitcoin or cryptocurrency wallet. Each word in the list is unique within the first four letters of each word, meaning no two words on the list share the same first four letters.

How many words are in BIP39? ›

The English-language wordlist for the BIP39 standard has 2048 words, so if the phrase contained only 12 random words, the number of possible combinations would be 2048^12 = 2^132 and the phrase would have 132 bits of security.

Is BIP39 safe? ›

In conclusion, a BIP39 passphrase is an optional phrase that you can add to your seed phrase to create a new set of addresses and private keys for your cryptocurrency wallet. By using a passphrase, you add an extra layer of security to your wallet, protecting your funds even if your seed phrase is compromised.

What is the function of BIP39? ›

BIP39 works by taking a random number and deriving a mnemonic phrase from it. This phrase is then used to generate a seed that can, in turn, be used to create private keys and addresses. The first step is to generate randomness (or entropy), which is a measure of randomness in a system.

What is 32-bit capability? ›

One bit in the register can typically reference an individual byte. Thus, the 32-bit system is capable of addressing about 4,294,967,296 bytes (4 GB) of RAM. Its actual limit is less than 3.5 GB (usually) because a portion of the register stores various other temporary values apart from the memory addresses.

What is a 32-bit address? ›

On a 32-bit system, virtual addresses are 32 bits, which means that the virtual address space runs from 0 to 0xffff ffff. The size of this address space is 232 bytes, or 4 GiB. On a 64-bit system, the size of the virtual address space is 264 bytes, or 24⋅10246 bytes.

What is a BiP used for? ›

A behavior intervention plan (BIP) is a written plan for a child with disabilities, included in the IEP when appropriate, which uses positive behavior intervention, supports and other strategies to address challenging behaviors and enables the child to learn socially appropriate and responsible behavior in school and/ ...

Does ethereum use BIP32? ›

Ethereum private key is a 32 bytes/256 bits data often represented as a 64 hexadecimal character string. Theoretically, any string can be used as a private key. Most wallets and blockchains support generating private keys from seed/mnemonic phrases, which are first defined in BIP-32, BIP-39, and BIP-44.

What is the difference between BIP32 and SLIP10? ›

BIP32 specifies a deterministic key derivation scheme for Bitcoin wallets. SLIP10 generalizes BIP32 in order to allow derivation for other types of keys. In both schemes you initially derive a master key from an initial seed.

Top Articles
Can You Use a Personal Loan for a Down Payment? | LendingTree
Pre-Approval: Definition, How It Works, and Types
Skyward Sinton
Mychart Mercy Lutherville
Unitedhealthcare Hwp
Explore Tarot: Your Ultimate Tarot Cheat Sheet for Beginners
25X11X10 Atv Tires Tractor Supply
Sarah F. Tebbens | people.wright.edu
Black Gelato Strain Allbud
No Hard Feelings Showtimes Near Metropolitan Fiesta 5 Theatre
DL1678 (DAL1678) Delta Historial y rastreo de vuelos - FlightAware
Weather Annapolis 10 Day
Southland Goldendoodles
Bme Flowchart Psu
Love Compatibility Test / Calculator by Horoscope | MyAstrology
6th gen chevy camaro forumCamaro ZL1 Z28 SS LT Camaro forums, news, blog, reviews, wallpapers, pricing – Camaro5.com
Andhrajyothy Sunday Magazine
bode - Bode frequency response of dynamic system
Brbl Barber Shop
Delectable Birthday Dyes
Relaxed Sneak Animations
Craigslist Pasco Kennewick Richland Washington
Skymovieshd.ib
Star Wars Armada Wikia
Wku Lpn To Rn
Pokémon Unbound Starters
Current Students - Pace University Online
Stouffville Tribune (Stouffville, ON), March 27, 1947, p. 1
Stubhub Elton John Dodger Stadium
Brenda Song Wikifeet
6465319333
Wake County Court Records | NorthCarolinaCourtRecords.us
P3P Orthrus With Dodge Slash
Puretalkusa.com/Amac
Hattie Bartons Brownie Recipe
Back to the Future Part III | Rotten Tomatoes
Bimar Produkte Test & Vergleich 09/2024 » GUT bis SEHR GUT
Kornerstone Funeral Tulia
Indiana Jones 5 Showtimes Near Cinemark Stroud Mall And Xd
2023 Nickstory
Trivago Sf
Cleveland Save 25% - Lighthouse Immersive Studios | Buy Tickets
What Is The Optavia Diet—And How Does It Work?
Ehc Workspace Login
Accident On 40 East Today
Aurora Southeast Recreation Center And Fieldhouse Reviews
Walmart Front Door Wreaths
Secondary Math 2 Module 3 Answers
Invitation Quinceanera Espanol
Latest Posts
Article information

Author: Tuan Roob DDS

Last Updated:

Views: 6516

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Tuan Roob DDS

Birthday: 1999-11-20

Address: Suite 592 642 Pfannerstill Island, South Keila, LA 74970-3076

Phone: +9617721773649

Job: Marketing Producer

Hobby: Skydiving, Flag Football, Knitting, Running, Lego building, Hunting, Juggling

Introduction: My name is Tuan Roob DDS, I am a friendly, good, energetic, faithful, fantastic, gentle, enchanting person who loves writing and wants to share my knowledge and understanding with you.