What are Mnemonic Code Words?
Author:
Divya Devaraj
Published On
Jan 30, 2025
, 7min read

Mnemonic code words, also known as mnemonic phrases, seed phrases, or BIP-39 phrases, are a human-readable representation of cryptographic keys used for securing cryptocurrency wallets. They provide a simple yet robust way to back up and restore private keys in blockchain-based systems.

In this article, we will explore the technical aspects of mnemonic code words, their generation process, entropy mechanics, and security considerations.

Understanding Mnemonic Code Words

Mnemonic phrases are a set of 12, 15, 18, 21, or 24 words derived from random entropy using a standardized algorithm. These words act as a deterministic backup of the private keys that control access to blockchain assets.

Instead of handling long hexadecimal private keys (which are difficult to remember), users can restore wallets using a readable BIP-39 mnemonic phrase.

Example of a 12-word Mnemonic Phrase:

'offer' 'diagram' 'gather' 'maximum' 'joy' 'gentle' 'evolve' 'swap' 'exit' 'season' 'damage' 'balance'

Each word in the phrase is selected from a fixed word list (2048 words in BIP-39) and mapped to cryptographic key data.

How Are Mnemonic Code Words Generated?

Mnemonic phrases are generated through a deterministic process that ensures consistency in wallet derivation.

1. Generating Entropy

Entropy (randomness) is the foundation of a mnemonic phrase. The entropy size determines the length of the mnemonic phrase:

  • 128-bit entropy → 12 words
  • 160-bit entropy → 15 words
  • 192-bit entropy → 18 words
  • 224-bit entropy → 21 words
  • 256-bit entropy → 24 words

The entropy is generated randomly using a secure method such as:

  • Cryptographic Secure Random Number Generators (CSPRNGs)
  • Hardware wallets or trusted entropy sources

2. Calculating the Checksum

A checksum is appended to the entropy to ensure the phrase has been generated correctly. The checksum is derived by taking the first few bits of the SHA-256 hash of the entropy.

For example, with 128-bit entropy, the checksum is the first 4 bits of its SHA-256 hash, making the final input 132 bits long.

3. Converting to Mnemonic Words

The final bit sequence (entropy + checksum) is split into 11-bit segments. Each 11-bit segment corresponds to an index in the BIP-39 word list, which contains 2048 predefined words.

This mapping ensures that every mnemonic phrase can be converted back into entropy and used to derive private keys deterministically.

How Mnemonic Phrases Are Used in Cryptocurrency Wallets

Mnemonic phrases are a key component of Hierarchical Deterministic (HD) wallets, as defined in BIP-32 and BIP-44. Once a mnemonic is generated, it can be used to derive multiple private/public key pairs using a deterministic algorithm.

1. Master Seed Generation (BIP-39 to Seed Conversion)

The mnemonic phrase is converted into a 512-bit master seed using the PBKDF2 function (HMAC-SHA512) with 2048 iterations.

Seed = PBKDF2_HMAC_SHA512(mnemonic, salt="mnemonic" + passphrase, iterations=2048)

  • The seed is used to generate an HD wallet tree, allowing a single mnemonic to derive thousands of unique addresses.
  • A passphrase (optional feature) can be added for extra security (also known as a BIP-39 passphrase).

2. Deriving Private/Public Keys

Using the BIP-32 hierarchical deterministic structure, child keys can be derived from the master seed, meaning users only need one mnemonic phrase to recover an entire wallet.

Security Considerations

While mnemonic phrases simplify wallet recovery, they come with security risks:

1. Never Share Your Mnemonic

Mnemonic phrases give full access to cryptocurrency wallets. Sharing them is equivalent to sharing private keys.

2. Use a Hardware Wallet for Secure Storage

For enhanced security, use hardware wallets (e.g., Ledger, Trezor) that store the mnemonic phrase in a secure enclave.

3. Offline Backup is Critical

Write down the mnemonic phrase and store it offline. Avoid storing it in digital form to prevent exposure to malware and phishing attacks.

4. Protect Against Brute-Force Attacks

Since mnemonic phrases are deterministic, adding a passphrase (BIP-39 optional passphrase) increases security by requiring an additional secret key during recovery.

Conclusion

Mnemonic code words (BIP-39) provide a human-readable way to secure and recover cryptocurrency wallets. By leveraging entropy, hashing, and wordlist-based encoding, these phrases enable deterministic wallet recovery while reducing human error.

For blockchain developers and security-conscious users, understanding mnemonic code words is essential for safeguarding digital assets in decentralized ecosystems.

Understanding Mnemonic Code Words

Example of a 12-word Mnemonic Phrase

How Are Mnemonic Code Words Generated?

How Mnemonic Phrases Are Used in Cryptocurrency Wallets

Security Considerations

Conclusion

Build reliable dApps with innovation on the Proxikle Platform
Contact Us