diff options
author | Ian Coleman <ian@iancoleman.io> | 2019-12-17 13:42:44 +1100 |
---|---|---|
committer | Ian Coleman <ian@iancoleman.io> | 2019-12-17 14:10:45 +1100 |
commit | 516c16d721db88b4b2c39964e2d5e8f6310c7bff (patch) | |
tree | ca4d1e8742d46715892adabe5003396819d7d12b /src/index.html | |
parent | f7e9fdf002e7355a122a86a8407b470b56bf3f59 (diff) | |
download | BIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.tar.gz BIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.tar.zst BIP39-516c16d721db88b4b2c39964e2d5e8f6310c7bff.zip |
Allow manual override for entropy type
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 42 |
1 files changed, 36 insertions, 6 deletions
diff --git a/src/index.html b/src/index.html index 64c25f4..fe048dc 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -123,12 +123,42 @@ | |||
123 | <div class="col-sm-3"> | 123 | <div class="col-sm-3"> |
124 | <p>Valid entropy values include:</p> | 124 | <p>Valid entropy values include:</p> |
125 | <ul> | 125 | <ul> |
126 | <li><strong>Binary</strong> [0-1]<br>101010011</li> | 126 | <li> |
127 | <li><strong>Base 6</strong> [0-5]<br>123434014</li> | 127 | <label> |
128 | <li><strong>Dice</strong> [1-6]<br>62535634</li> | 128 | <input type="radio" name="entropy-type" value="binary"> |
129 | <li><strong>Base 10</strong> [0-9]<br>90834528</li> | 129 | <strong>Binary</strong> [0-1]<br>101010011 |
130 | <li><strong>Hex</strong> [0-9A-F]<br>4187a8bfd9</li> | 130 | </label> |
131 | <li><strong>Card</strong> [A2-9TJQK][CDHS]<br>ahqs9dtc</li> | 131 | </li> |
132 | <li> | ||
133 | <label> | ||
134 | <input type="radio" name="entropy-type" value="base 6"> | ||
135 | <strong>Base 6</strong> [0-5]<br>123434014 | ||
136 | </label> | ||
137 | </li> | ||
138 | <li> | ||
139 | <label> | ||
140 | <input type="radio" name="entropy-type" value="dice"> | ||
141 | <strong>Dice</strong> [1-6]<br>62535634 | ||
142 | </label> | ||
143 | </li> | ||
144 | <li> | ||
145 | <label> | ||
146 | <input type="radio" name="entropy-type" value="base 10"> | ||
147 | <strong>Base 10</strong> [0-9]<br>90834528 | ||
148 | </label> | ||
149 | </li> | ||
150 | <li> | ||
151 | <label> | ||
152 | <input type="radio" name="entropy-type" value="hexadecimal" checked> | ||
153 | <strong>Hex</strong> [0-9A-F]<br>4187a8bfd9 | ||
154 | </label> | ||
155 | </li> | ||
156 | <li> | ||
157 | <label> | ||
158 | <input type="radio" name="entropy-type" value="card"> | ||
159 | <strong>Card</strong> [A2-9TJQK][CDHS]<br>ahqs9dtc | ||
160 | </label> | ||
161 | </li> | ||
132 | </ul> | 162 | </ul> |
133 | </div> | 163 | </div> |
134 | </div> | 164 | </div> |