File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
296296on index 0 to `pwd_len`. This slice is the password. As `pwd_len` is limited to 86, passwords will not contain padding.
297297
298298Entropy calculation:<br>
299- R = 64 (base64 - do not count padding)<br>
299+ R = 64 (Base64 - do not count padding)<br>
300300L = pwd_len<br>
301301Entropy = 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
332332Base85 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
334334on index 0 to `pwd_len`. This slice is the password. `pwd_len` is limited to 80 characters.
335335
336336Entropy calculation:<br>
You can’t perform that action at this time.
0 commit comments