A bunch of little errors, including a fix to the balancehash computation
[Trubanc.git] / notes.txt
blob22c586402fc9947439e15f44117c8df8d58f4c59
1 JavaScript crypto
2 =================
4 crypto.signText(text, option, certificateName)
5   Needs certificates and packages up the result a lot
7 <script>
8 for (prop in crypto) {
9   document.write(prop + "<br>\n");
11 </script>
13 Big Integers and RSA in JavaScript
14 http://www-cs-students.stanford.edu/~tjw/jsbn/
15 http://www.leemon.com/crypto/BigInt.html
17 JavaScript sha1 is all over the place
19 JavaScript base64 encode/decode is all over the place