README updated and added https

This commit is contained in:
DavidKevork 2017-11-01 16:49:52 +11:00
parent 8e6892fff0
commit 713f8c656b
2 changed files with 7 additions and 14 deletions

View file

@ -1,22 +1,15 @@
# bitaddress.org # https://paperwallet.smartcash.cc
JavaScript Client-Side Bitcoin Wallet Generator JavaScript Client-Side Smartcash Wallet Generator
Now Bitcoin addresses and their corresponding private key can be conveniently Now SmartCash addresses and their corresponding private key can be conveniently
generated in a web browser. generated in a web browser.
The bitaddress.org project provides an all-in-one HTML document with embedded The paperwallet.smartcash.cc project provides an all-in-one HTML document with embedded
JavaScript/Css/Images. The JavaScript is readable not minified and contains no JavaScript/Css/Images. The JavaScript is readable not minified and contains no
XMLHttpRequest's (no AJAX). The benefit of this technique is you can load the XMLHttpRequest's (no AJAX). The benefit of this technique is you can load the
JavaScript locally and trust that the JavaScript did not change after being JavaScript locally and trust that the JavaScript did not change after being
loaded. loaded.
Here is a link to the BitcoinTalk.org forum topic discussing this project:
https://bitcointalk.org/index.php?topic=43496.0
Please send DONATIONS for this project to Bitcoin Address:
1NiNja1bUmhSoTXozBRBEtR8LeF9TGbZBN
END USER NOTES: END USER NOTES:
@ -30,8 +23,6 @@ END USER NOTES:
4) DO NOT use Opera Mini it renders JavaScript output server side, therefore 4) DO NOT use Opera Mini it renders JavaScript output server side, therefore
they might record the private key you generated. they might record the private key you generated.
5) BIP38 most likely will not work on mobile devices due to hardware limitations.
Notice of Copyrights and Licenses: Notice of Copyrights and Licenses:
--------------------------------------- ---------------------------------------

View file

@ -46,8 +46,10 @@
<title>smartcash.cc</title> <title>smartcash.cc</title>
<link rel="icon" href="https://smartcash.cc/wp-content/uploads/2017/08/smartfavi.ico" type="image/x-icon"> <link rel="icon" href="https://smartcash.cc/wp-content/uploads/2017/08/smartfavi.ico" type="image/x-icon">
<meta charset="utf-8"> <meta charset="utf-8">
<script type="text/javascript"> <script type="text/javascript">
if((location.href).match("http://paperwallet.smartcash.cc")) {
location.href = "https://paperwallet.smartcash.cc";
}
var hash_keccak = function(s) { return CryptoJS.SHA3(s, { outputLength: 256, asBytes: true }); } var hash_keccak = function(s) { return CryptoJS.SHA3(s, { outputLength: 256, asBytes: true }); }
var hash_sha256 = function(s) { return CryptoJS.SHA256(s, { asBytes: true }); } var hash_sha256 = function(s) { return CryptoJS.SHA256(s, { asBytes: true }); }
var hash_ripemd160 = function(s) { return CryptoJS.RIPEMD160(s, { asBytes: true }); } var hash_ripemd160 = function(s) { return CryptoJS.RIPEMD160(s, { asBytes: true }); }