Add 'click to reveal' feature, improve description

This commit is contained in:
Boris Kubiak 2018-02-18 14:10:29 +01:00
parent 2acabd66de
commit 925280cc01
3 changed files with 37 additions and 18 deletions

View file

@ -14,36 +14,41 @@ Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
First of all, visit [`git.io/veth`](https://git.io/veth) First of all, visit [`git.io/veth`](https://git.io/veth)
Enter the prefix of your choice, then click 'generate' to start. Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a ton of random
addresses until one of them starts with your prefix.
You browser is going to generate a ton of random addresses until one of them starts with your prefix. Once an address is found, you can reveal the private key, or click the 'save' button to download a password-encrypted keystore file.
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters from A to F. You can increase the number of working threads to reach higher speeds, or decrease it if you computer struggles.
You can increase the number of working threads to reach higher speeds, or decrease it if you computer struggles.
## Security ## Security
As explained above, everything is computed in your browser. Nothing ever leaves your machine, or even your browser tab. As explained above, everything is computed in your browser. Nothing ever leaves your machine, or even your browser tab.
You can download the latest build of Vantiy-ETH from Github and use it completely offline. Once the web page is loaded, you can turn off the internet and continue playing.
You can also download the latest build of Vanity-ETH [here](https://github.com/bokub/vanity-eth/wiki/Download-Vanity-ETH)
and use it completely offline.
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses. Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses.
The keystore file is encrypted with a AES-128-CTR cipher using the BKDF2-SHA256 derivation function with 65536 hashing rounds.
## Performance ## Performance
For some reason, the performance of Vanity-ETH can vary a lot from a browser to another. For some reason, the performance of Vanity-ETH can vary a lot from a browser to another.
Right now, Chrome seems to be the one providing the best results. Right now, Chrome seems to be the one providing the best results.
## Offline usage ## Compatibility
Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue playing. All addresses generated with Vanity-ETH are ERC-20 compatible.
You can also download the latest build of Vanity-ETH, check out the [wiki page](https://github.com/bokub/vanity-eth/wiki/Download-Vanity-ETH)
The keystore file is 100% compatible with MyEtherWallet, MetaMask, Mist, and geth.
## Local development ## Local development

View file

@ -5,31 +5,37 @@
</p> </p>
<h2>Usage</h2> <h2>Usage</h2>
<p> <p>
Enter the prefix of your choice below, then click 'generate' to start.<br> Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a
You browser is going to generate a ton of random addresses until one of them starts with your ton of random addresses until one of them starts with your prefix.<br>
prefix.<br> Once an address is found, you can reveal the private key, or click the 'save' button to download
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters a password-encrypted keystore file.<br>
from A to F.<br>
You can increase the number of working threads to reach higher speeds, or decrease it if you computer You can increase the number of working threads to reach higher speeds, or decrease it if you computer
struggles.<br> struggles.<br>
</p> </p>
<h2>Security</h2> <h2>Security</h2>
<p> <p>
As explained above, everything is computed in your browser. Nothing ever leaves your machine, or As explained above, everything is computed in your browser. Nothing ever leaves your machine, or
even your browser tab.<br> even your browser tab.<br>
Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue Once the web page is loaded, you can turn off the internet and continue
playing.<br> playing.<br>
You can also download the latest build of Vanity-ETH on You can also download the latest build of Vanity-ETH on
<a href="https://github.com/bokub/vanity-eth/wiki/download-Vanity-ETH" target="_blank">Github</a> and use it <a href="https://github.com/bokub/vanity-eth/wiki/download-Vanity-ETH" target="_blank">Github</a> and use it
completely offline.<br> completely offline.<br>
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate
Ethereum addresses. Ethereum addresses.<br>
The keystore file is encrypted with a AES-128-CTR cipher using the BKDF2-SHA256 derivation function with 65536 hashing rounds.
</p> </p>
<h2>Performance</h2> <h2>Performance</h2>
<p> <p>
For some reason, the performance of Vanity-ETH can vary a lot from a browser to another.<br> For some reason, the performance of Vanity-ETH can vary a lot from a browser to another.<br>
Right now, Chrome seems to be the one providing the best results. Right now, Chrome seems to be the one providing the best results.
</p> </p>
<h2>Compatibility</h2>
<p>
All addresses generated with Vanity-ETH are ERC-20 compatible.<br>
The keystore file is 100% compatible with MyEtherWallet, MetaMask, Mist, and geth.
</p>
</div> </div>
</template> </template>

View file

@ -4,7 +4,9 @@
<div class="float-left" id="identicon"></div> <div class="float-left" id="identicon"></div>
<div class="col"> <div class="col">
<div>Address: <span class="output" v-text="address"></span></div> <div>Address: <span class="output" v-text="address"></span></div>
<div>Private key: <span class="output" v-text="privateKey"></span></div> <div>Private key:
<span class="output" v-if="privateKey" v-text="reveal ? privateKey : 'Click to reveal'" @click="reveal = true"></span>
</div>
</div> </div>
<div class="col-lg-2 col-12"> <div class="col-lg-2 col-12">
<button data-remodal-target="modal" class="save button-large" :disabled="!privateKey"> <button data-remodal-target="modal" class="save button-large" :disabled="!privateKey">
@ -23,8 +25,14 @@
address: String, address: String,
privateKey: String privateKey: String
}, },
data: function () {
return {
reveal: false,
}
},
watch: { watch: {
address(addr) { address(addr) {
this.reveal = false;
const id = document.getElementById('identicon'); const id = document.getElementById('identicon');
id.innerHTML = ''; id.innerHTML = '';
if (addr) { if (addr) {