Skip to content

Commit 3f2a403

Browse files
authored
Merge pull request #1939 from ethicnology/master
BIP85: replace Base64 by Base85 in PWD BASE85 section
2 parents 4f00b49 + 3e9befd commit 3f2a403

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bip-0085.mediawiki

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,11 @@ The derivation path format is: <code>m/83696968'/707764'/{pwd_len}'/{index}'</co
292292
`20 <= pwd_len <= 86`
293293

294294
[https://datatracker.ietf.org/doc/html/rfc4648 Base64] encode all 64 bytes of entropy.
295-
Remove any spaces or new lines inserted by Base64 encoding process. Slice base64 result string
295+
Remove any spaces or new lines inserted by Base64 encoding process. Slice Base64 result string
296296
on index 0 to `pwd_len`. This slice is the password. As `pwd_len` is limited to 86, passwords will not contain padding.
297297

298298
Entropy calculation:<br>
299-
R = 64 (base64 - do not count padding)<br>
299+
R = 64 (Base64 - do not count padding)<br>
300300
L = pwd_len<br>
301301
Entropy = log2(R ** L)<br>
302302

@@ -330,7 +330,7 @@ The derivation path format is: <code>m/83696968'/707785'/{pwd_len}'/{index}'</co
330330
`10 <= pwd_len <= 80`
331331

332332
Base85 encode all 64 bytes of entropy.
333-
Remove any spaces or new lines inserted by Base64 encoding process. Slice base85 result string
333+
Remove any spaces or new lines inserted by Base85 encoding process. Slice Base85 result string
334334
on index 0 to `pwd_len`. This slice is the password. `pwd_len` is limited to 80 characters.
335335

336336
Entropy calculation:<br>

0 commit comments

Comments
 (0)