aboutsummaryrefslogtreecommitdiff
path: root/src/js/entropy.js
Commit message (Collapse)AuthorAgeFilesLines
* Entropy with more than 4 decks can be calculatedIan Coleman2016-11-301-1/+6
|
* bitsPerEvent correct for multiple decks of cardsIan Coleman2016-11-301-3/+13
|
* Card entropy has improved conversion to binaryIan Coleman2016-11-301-90/+79
| | | | | See http://crypto.stackexchange.com/q/41886 and https://github.com/iancoleman/bip39/issues/33#issuecomment-263021856
* Card entropy calculation bugfixIan Coleman2016-11-251-12/+84
| | | | See https://github.com/iancoleman/bip39/issues/33
* Entropy library has extra comments for clarityIan Coleman2016-11-171-3/+5
|
* Entropy library assumes cards are discardedIan Coleman2016-11-171-0/+46
| | | | and removed the duplicate logic from the UI logic.
* BigInteger library moved to own fileIan Coleman2016-11-161-1627/+0
|
* Card suits have color and use larger font sizeIan Coleman2016-11-141-0/+8
|
* Entropy feedback in tabular format, not sentenceIan Coleman2016-11-101-36/+11
|
* Card entropy uses unicode suit symbols in cleanStrIan Coleman2016-11-101-0/+7
|
* Dice conversion to Base 6 uses arrays not stringsIan Coleman2016-11-101-7/+6
|
* No leading zeros for first char unless hexIan Coleman2016-11-081-13/+15
|
* Dice entropy conversion to Base 6 is simplerIan Coleman2016-11-071-3/+4
| | | | | Old: Every dice roll is reduced by 1 New: Replace all 6s with 0s
* Cards can be used for entropyIan Coleman2016-11-071-36/+87
| | | | Format is [A2-9TJQK][CDHS]
* Entropy refactor to prep for card detectionIan Coleman2016-11-071-21/+55
|
* Entropy can be supplied by userIan Coleman2016-11-041-0/+1774