billstclair / trubanc

Trubanc is an anonymous, digitally-signed vault and trading system.

trubanc / notes.txt
100644 21 lines (14 sloc) 0.437 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
JavaScript crypto
=================
 
crypto.signText(text, option, certificateName)
  Needs certificates and packages up the result a lot
 
<script>
for (prop in crypto) {
  document.write(prop + "<br>\n");
}
</script>
 
Big Integers and RSA in JavaScript
http://www-cs-students.stanford.edu/~tjw/jsbn/
http://www.leemon.com/crypto/BigInt.html
 
JavaScript sha1 is all over the place
 
JavaScript base64 encode/decode is all over the place