How to generate a Seed Phrase. (2024)

Below are five ways to generate a seed phrase, and an in-depth discussion on the importance of randomness in ensuring security.

Yourseed phraseis a mnemonic code consisting of 12-24 words that is used to recover your cryptocurrency wallet. It is sometimes called a backup phrase, recovery phrase, or mnemonic sentence. It is the foundation of most modern wallets and the crypto universe in general.

A Mnemonic phrase is an encoded source of entropy, or randomness, that identifies your wallet within the digital universe.

This article offers you an explanation of some common ways to generate seed phrases. Click through the links for more detailed instructions.

Vault12 offers you a Personal Information security GPT to answer questions using our collected mix of expert articles. Try it here:

https://chat.openai.com/g/g-MTZnRKo73-personal-info-security-wizard.

TL;DR (concentrated takeaways)

  • Even when you have your own crypto wallet, you have a few choices for how to generate your seed phrase.
  • It is extremely important that your seed phrase be randomly generated, so that it cannot be guessed or reverse-engineered.
  • Seed phrases with more words have more entropy / randomness than those with fewer words.
  • You can let your wallet generate a seed phrase for you.
  • You can also use the Vault12 app to generate a more robust seed phrase for you.
  • For added security, you can "roll your own" seed phrase with dice, or use a calculator, as offline methods.
  • Computer-generated methods of random number or seed phrase generation are simpler, but can be hard to verify as safe and effective.
  • The BIP39 standard determines how random numbers are securely translated into a seed phrase. This is explained in further detail.

1. How to generate a seed phrase with Vault12?

Vault12 allows you to create an encrypted and distributed digital vault. Vault12 secures digital assets including cryptocurrency seed phrases, and can also generate your seed phrase for you. You can be absolutely sure that your seed phrase is generated safely and automatically backed up in a secure manner. Please read our guide to learn more.

2.How to generate a seed phrase with a calculator?

Generating a seed phrase by using a calculator is done offline, and this removes a wide range of potential attacks. You'll need a calculator that has a RANDOM function to generate entropy. This also introduces new risks, however - instead of using one device to generate your seed phrase, you'll need to use two devices: the calculator and an air-gapped computer. Learn more about generating a seed phrase using an offline calculator here.

3.How to generate a seed phrase with dice?

The humble dice can be used for a non-digital and completely offline method of seed phrase generation. To do this, you'll need dice, a pen and paper, and the BIP39 word list - be prepared to do some math! You can use a single die if you want, but it is recommended to use multiple dice. You'll be creating entropy by generating a large random number by using the dice. Learn how to generate a seed phrase with dice here.

4.How to generate a seed phrase with software crypto wallets?

With very few exceptions, most modern wallets will create your seed phrase for you when you create your wallet. This process is usually automatic, with limited options for setting the parameters of your seed phrase. For most users this one-time approach is sufficient, and it won't be thought of again.

Please take a look at the article, "Using crypto wallets to generate seed phrases" to get an overview of how seed generation is done inside wallets during the set up phase.

See Crypto Wallet Guides for step-by-step instructions on how specific wallets accomplish this.

Please keep in mind, that in any potentially high net-worth use case, generating seed phrases manually on your own - especially offline - is an excellent choice for much higher security and greater control over the process.

5.How to generate a seed phrase with hardware wallets?

Hardware wallets provide an extra level of security compared to software wallets and provide methods to generate a seed phrase within the wallet itself. Hardware wallets strike an excellent compromise between usability and extra security. Feel free to check out Vault12's "How-to" wallet guides to bring you through the steps needed to securely generate and back up seed phrases using hardware wallets.

Here are some hardware wallets that we recommend:

  • Ledger Nano X
  • Ledger Nano S
  • Trezor One
  • Trezor Model T
  • KeepKey
  • ColdCard MK3
  • BitBox 01/02

What goes on behind the scenes of generating a seed phrase?

The process of generating a seed phrase starts with generating random data, called entropy. The entropy is then run through a hashing function, specifically SHA256, to generate the checksum. Part of the checksum is then added to the random data. The resulting output is then split into chunks of 11 bits, where each 11-bit chunk maps to a single word on the BIP39 word list.

Confused about anything in the above paragraph? Don't worry, each step will be explained in an easy to understand format below. You can also get a higher-level understanding of seed phrase construction by checking out "What is BIP39?".

How much entropy should your seed phrase have?

Generating a seed phrase HAS to begin with a RANDOM SOURCE OF DATA, otherwise an attacker could possibly steal funds by regenerating your seed phrase. Entropy is a measure of how random a set of data is.

Which is more random? Rolling 1 dice, or rolling 2 dice? Since 2 dice have more possible outcomes, the measurement of randomness is higher. It is the same for your seed phrase. The more words that are in your seed phrase, the higher the entropy will be.

To successfully generate a seed phrase, the entropy generated has to fit certain parameters. The random data must be between 128 bits and 256 bits of entropy, and divisible by 32.

128 bits of entropy maps to a 12 word seed phrase

160 bits of entropy maps to a 15 word seed phrase

192 bits of entropy maps to an 18 word seed phrase

224 bits of entropy maps to a 21 word seed phrase

Recommended by LinkedIn

North Korea’s new-age national security threat Business Insider 2 years ago
Why Cybersecurity is Essential for Protecting Our… Yip Thy Diep Ta 1 week ago

256 bits of entropy maps to a 24 word seed phrase

How are SHA256 and BIP39 word lists used to generate a seed phrase?

A hash function is a computer program that takes an input of data and returns a verifiable result, called a checksum. The input can be any source of data, and running the same hash function again will always return the same checksum as the result.

For example, running your random source data of 128 bits of entropy through a hash function will always return the same result as the checksum. If you change anything in that source data, you will get a different result from the hash function.

In this step, the random source data is run through a SHA256 hash function. The first X digits of the checksum are then added to the random source data/entropy, where X is equal to: (amount of bits of entropy / 32).

256 bits of entropy (256/32 = 8) - add the first 8 bits of the checksum to the random data

224 bits of entropy (224/32 = 7) - add the first 7 bits of the checksum to the random data

192 bits of entropy (192/32 = 6) - add the first 6 bits of the checksum to the random data

160 bits of entropy (160/32 = 5) - add the first 5 bits of the checksum to the random data

128 bits of entropy 128/32 = 4) - add the first 4 bits of the checksum to the random data

It's important to note that BIP39 generates the seed phrase from binary code, which is made up of 0's and 1's. However, the SHA256 hash function returns the checksum as a sequence of numbers and letters, called a hexadecimal. So in order to get the seed phrase, you have to convert the checksum from hexadecimal format to binary format.

Here's the next step: We slice the result into 11-bit chunks of data. Each 11-bit chunk of data will map to a word from the BIP39 word list

You have seen the word "bit" used a few times in this article. A bit represents 0's and 1's. It is the smallest representation of data we have, and it is expressed in a language our computers understand.

Your original source of random data (or entropy) plus the SHA256 checksum is divisible by 11. The BIP39 word list contains 2048 words, and each word on the list maps to 11 bits of data. In this next step, you break your entropy+checksum combo into sequential chunks of 11 bits.

It is important that you slice the 11-bit chunks in sequential order. This means going from left to right, every 11 bits is grouped together. Every 11 bits represents a word in your seed phrase, and the order of the words has to be correct.

The next step is to convert your 11-bit sequence into decimal format. This will give you a number that maps to the BIP39 word list. Now, in the correct order, map each 11-bit sequence to the matching word in the BIP39 word list. Finally, this is your seed phrase!

It's important to highlight that some word lists for BIP39 might start with 1. In code, the first number is always 0. This means that 2048 words are listed as 0-2047, not 1-2048. If your BIP39 word list starts with 1 instead of 0, you will need to subtract 1 from the word list numbers to get the correct word.

What are some different ways to perform Random Number Generation (RNG)?

Going back to generating your initial source of randomness: Once you generate the needed entropy, the remaining process of getting the seed phrase is simply math and cryptography. In practice, this means that when generating a seed phrase, the initial source of entropy is both the most important step, and also the step in which you have the most control over the result.

There are many ways to generate entropy: flipping a coin, rolling dice, dealing a deck of cards, recording ambient sound, and many more. The goal here is to get as close to true randomness as possible. If you are using a process that is not sufficiently random, an attacker can recreate your seed phrase.

In the following sections of this article, we will cover different approaches for how to generate entropy, and thus generate your seed phrase.

What are the security considerations of generating your own seed phrase?

Taking control over the generation of your seed phrase provides the ability to increase the entropy of your seed phrase, thus increasing the security of your entire wallet. This does not come without risks - a single mistake can result in a less secure wallet, even lost funds.

When generating your own seed phrase, security must be top of mind throughout the whole process. The most crucial part of generating your seed phrase rests with the generation of entropy, which is the first step of generating your seed phrase.

Your seed phrase can have 12, 15, 18, 21, or 24 words. The more words in your seed phrase, the higher the entropy, which means higher security. A correctly generated 24-word seed phrase will ALWAYS produce a wallet that is more secure than a 12 word seed phrase. Many wallets today only produce 12-word seed phrases in their built-in wallet creation workflow, but it's important to note that 12-word seed phrases are still very secure.

The key concept here is correctly generated. The only parameter that can be changed is the source of entropy. This is very important because if the source of entropy is corrupted, an attacker can potentially regenerate your wallet and steal your funds.

Generating entropy can be done manually or with a computer. Both methods have pros and cons. When generating entropy, care has to be taken to ensure the process is being done correctly and is free from outside manipulation.

A basic example of manually generating entropy would be flipping a coin. In this example, if an attacker gives you a coin that is weighted slightly in favor of heads, your initial source of entropy will have been corrupted.

When using a computer to generate entropy, the attack vectors (or corruption attempts) can be both over the internet and physically in-person. The computer being used should not be connected to the internet, as that provides an opportunity for attackers to compromise the process. However, even if the device was ever connected to the internet, this allows for an opportunity to corrupt this process.

Part of being in a security mindset means limiting opportunities available for bad actors. A device not connected to the internet is considered air-gapped, which means an attacker has to be physically present at the device to be successful at manipulating the entropy.

If you don't have a spare device that you can airgap, don't worry - you can use a "live" Linux environment. Many Linux operating systems are able to be run off of a portable USB stick or flash drive. These are called live distributions and they're released with verification signatures, so you can easily verify that the operating system has not been tampered with. We highly recommend Tails OS - a portable OS that protects against surveillance and censorship. To run the operating system, just plug in the flash drive and boot it up. When you're done, simply remove the flash drive and return it to your normal operating system.

Vault12 offers you a Personal Information security GPT to answer questions using our collected mix of expert articles. Try it here:

https://chat.openai.com/g/g-MTZnRKo73-personal-info-security-wizard.

How to generate a Seed Phrase. (2024)

FAQs

How to generate a Seed Phrase.? ›

In a nutshell, the process of generating a seed phrase starts with generating random data, called entropy. The entropy is then run through a hashing function - specifically SHA256 - to generate a checksum. Part of the checksum is then added to the random data.

How are seed phrases created? ›

A seed phrase is a long string composed of a collection of random terms. The generated words originate from a catalog of 2048 words. The words on a seed phrase are simplified so the user can remember them, as opposed to if the phrase consisted of lengthy numbers or special characters.

How can I get my seed phrase? ›

How can I find out the seed phrase if I know the password from my wallet? Got to your Wallet, enter your password, go to your portfolio, then choose to Back Up Now . It will ask you for your password once again and then will go on to give you a seed phrase for your Wallet.

What are seed phrases examples? ›

The seed phrase consists of 12 to 24 simple words, randomly sequenced from a list of 2048 words. Here is an example of what a 12-word seed phrase can look like: carpet, cat, flower, chair, foot, river, make, image, amazing, three, say, shoe. The seed phrase is generated the first time a user sets up a wallet.

How hard is it to crack a seed phrase? ›

However, seed phrases are considered very secure by modern standards. With a 12- or 24-word seed phrase out of 2048 possible words, determining the right words in the right sequence is almost impossible.

Can I generate my own seed phrase? ›

You could let your digital wallet generate a seed phrase for you. Or for very high security, you could "roll your own" seed phrase with dice or a calculator as offline methods. It is extremely important that your seed phrase be randomly generated, so that it cannot be guessed or reverse-engineered.

Why only the first 4 letters of a seed phrase? ›

In other words, there are no two words in this list with the same first 4 characters. That means if you have the first 4 letters, you know the rest of the word by looking for those first 4 letters in the BIP39 wordlist. Some wallets will even fill in the rest of the word once the first 4 letters are entered.

What if someone steals my seed phrase? ›

A lost or stolen seed phrase should be treated as compromised. You need to replace the key entirely by conducting a key replacement.

Is my seed phrase my private key? ›

What's the difference between a private key and a seed phrase? A private key is per account, whereas the seed phrase is per wallet, used to generate all private keys in the account. Hence you cannot restore all accounts if you have only 1 key.

Can anyone guess my seed phrase? ›

The large amount of theoretical wallets make it practically impossible for anyone to guess your seed phrase, not to mention “re-creating” your wallet by sheer accident.

What words are in a seed phrase? ›

The phrases contain words drawn from a list of 2,048 English words called the BIP39 standard, which the BitPay Wallet and many other leading crypto wallets utilize, offering 128-bit encryption. Most seed phrases are either 12 or 24 words in length, and each is unique to the wallet that created it.

How safe is a seed phrase? ›

Seed phrases are a crucial aspect of crypto security. They are a sequence of random words that guarantee the recovery of wallets. While seed phrases offer an extra layer of security and recovery, handling them responsibly is important. Losing access to them can result in the loss of your wallet.

How to generate seed keywords? ›

To review, the general process for creating a seed list involves:
  1. Start with terms directly associated with your brand.
  2. Research terms used by your audience.
  3. Check Google's related searches.
  4. Examine ranking keywords.
  5. Analyze competitor keywords.
Mar 22, 2018

What is the 12-word secret recovery phrase? ›

What is a secret recovery phrase? Your secret recovery phrase is the key to your wallet and controls access to all your crypto. A secret recovery phrase is a set of words that correspond to numbers. These numbers make up a seed integer that generates all of the private keys in your wallet.

Is a 12-word seed phrase enough? ›

In practice, it is highly unlikely that an attacker could guess or brute-force a 12-word recovery seed with 128 bits of entropy in a feasible amount of time. Thus, a 12-word seed offers a high level of security that is sufficient for most users, striking a balance between security and ease of use.

What is the master seed phrase? ›

A recovery phrase (sometimes known as a seed phrase) is a series of words generated by your cryptocurrency wallet that gives you access to the crypto associated with that wallet. Think of a wallet as being similar to a password manager for crypto, and the recovery phrase as being like the master password.

How are MetaMask seed phrases generated? ›

In simple terms, a series of words are selected with a high level of randomness from a specific list of words. In MetaMask and many other Ethereum-compatible technologies, there are 12 words in a seed phrase.

How does ledger generate seed phrases? ›

The device generates a sequence of 256 random bits using the True Random Number Generator (TRNG) built into the device's Secure Element. Each group of 11 bits is interpreted as a number in the range 0 - 2047, which serves as an index to the BIP 39 wordlist, giving us 24 words.

How does Coinbase Wallet generate seed phrases? ›

When you first set up a crypto wallet — like Coinbase Wallet — it generates a string of simple words, which is your recovery phrase (sometimes also known as a seed phrase). The wallet also uses the recovery phrase to algorithmically create private keys — which allow you to send or spend your crypto.

Can the same seed phrase be generated? ›

Yes, you can restore a wallet using the same seed phrase in different wallets.

Top Articles
Handling Large File Uploads in React: Securely Using AWS S3 Pre-signed URLs
How Credit Card Frauds Are Caught
English Bulldog Puppies For Sale Under 1000 In Florida
Katie Pavlich Bikini Photos
Gamevault Agent
Pieology Nutrition Calculator Mobile
Hocus Pocus Showtimes Near Harkins Theatres Yuma Palms 14
Hendersonville (Tennessee) – Travel guide at Wikivoyage
Compare the Samsung Galaxy S24 - 256GB - Cobalt Violet vs Apple iPhone 16 Pro - 128GB - Desert Titanium | AT&T
Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
Craigslist Dog Kennels For Sale
Things To Do In Atlanta Tomorrow Night
Non Sequitur
Crossword Nexus Solver
How To Cut Eelgrass Grounded
Pac Man Deviantart
Alexander Funeral Home Gallatin Obituaries
Energy Healing Conference Utah
Geometry Review Quiz 5 Answer Key
Hobby Stores Near Me Now
Icivics The Electoral Process Answer Key
Allybearloves
Bible Gateway passage: Revelation 3 - New Living Translation
Yisd Home Access Center
Pearson Correlation Coefficient
Home
Shadbase Get Out Of Jail
Gina Wilson Angle Addition Postulate
Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
Walmart Pharmacy Near Me Open
Marquette Gas Prices
A Christmas Horse - Alison Senxation
Ou Football Brainiacs
Access a Shared Resource | Computing for Arts + Sciences
Vera Bradley Factory Outlet Sunbury Products
Pixel Combat Unblocked
Movies - EPIC Theatres
Cvs Sport Physicals
Mercedes W204 Belt Diagram
Mia Malkova Bio, Net Worth, Age & More - Magzica
'Conan Exiles' 3.0 Guide: How To Unlock Spells And Sorcery
Teenbeautyfitness
Where Can I Cash A Huntington National Bank Check
Topos De Bolos Engraçados
Sand Castle Parents Guide
Gregory (Five Nights at Freddy's)
Grand Valley State University Library Hours
Hello – Cornerstone Chapel
Stoughton Commuter Rail Schedule
Nfsd Web Portal
Selly Medaline
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 5840

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.