Ryan X. Charles
3cbf2e07c4
use decorate on gt and lt
11 years ago
Ryan X. Charles
80bba1cf81
use a decorate function to optimize bundle filesize
11 years ago
Ryan X. Charles
af1d754bd8
make bignum interface backwards compatible
- fix cmp, mul, div, add, mod, sub functions to take numbers and strings
- fix Point class to use common folder correctly
11 years ago
Ryan X. Charles
e4cb7d2014
remoe unimplemented bignum.pow()
11 years ago
Ryan X. Charles
c8f11b9c0a
require Point ... woops
11 years ago
Ryan X. Charles
204d8563c8
remove cryptojs dependency from Key
11 years ago
Ryan X. Charles
ac4d3186bf
update sign function to use elliptic
11 years ago
Ryan X. Charles
8fb6ccaf01
use elliptic for Point.multiply and key regeneration
11 years ago
Ryan X. Charles
15d4328b35
use elliptic in Point in the browser instead of cryptojs
11 years ago
Ryan X. Charles
c8fe404402
replace bignumber.js with bn.js
11 years ago
Manuel Araoz
0e2df698cd
fix SIN and add tests
11 years ago
Manuel Araoz
87b818badf
remove soop exports
11 years ago
Manuel Araoz
557e9ae2a4
use node util.inherits
11 years ago
Manuel Araoz
6e346d067c
remove soop imports
11 years ago
Manuel Araoz
b0924978e4
oops
11 years ago
Manuel Araoz
cd7eae8359
remove soop inheritance system
11 years ago
Ryan X. Charles
65ab3a663a
fix string/buffer sjcl issue
...by using sjcl.mode.cbc.encrypt/decrypt rather than sjcl.encrypt/decrypt. The
difference is that the sjcl.encrypt/decrypt functions are really convenience
methods designed to encrypt and decrypt strings, but don't play nice with
binary data, as revealed in the tests in this commit and the previous commit.
Basically, if you use them to encrypt and decrypt binary data as a string, it
will return the wrong result or an error.
The solution is to use the block cipher directly, in this case sjcl.mode.cbc.
This also has the advantage of fewer format conversions - no converting to
base64 and JSON strings. This makes things faster. Also, it is actually correct
unlike the previous method.
11 years ago
Ryan X. Charles
39889476fb
add sign/verify with pki_type SIN
...which is much easier to implement than X.509 certificates.
11 years ago
Ryan X. Charles
71e226b782
serialize payment request for signature
11 years ago
Ryan X. Charles
76804bef45
Fix checksum comparison error. Closes #402
11 years ago
Ryan X. Charles
0bea06f785
add BIP70 protobuf features in new PayPro lib file
...and add to the "main" bundle, but not the "all" bundle, since it adds
hundreds of kilobytes to the bundle.
11 years ago
Petros Angelatos
d2ce401f84
remove dead code
11 years ago
Devrandom
efb62b08b7
add check function for BIP39
fixes #393
11 years ago
Ryan X. Charles
ca67786a77
ran js-beautify on all bitcore source
js-beautify -s 2 -r *.js
...did not run on bundles, only on source.
11 years ago
Ryan X. Charles
54c8e04738
remove unbuilding c code, and ...
* Remove c code that didn't compile on my machine
* Replace with sjcl code
* Minor modifications to mnemonic interface more bitcoreish
11 years ago
rxl
1170923f86
fix grammar in 'not enough unspent tx outputs' error in tx builder
11 years ago
Manan Patel
d83fc6e4b5
Resolves #373
Move TransactionBuilder.scriptForAddress to Address#getScriptPubKey (instance method)
11 years ago
Manuel Araoz
0d670ff979
suggestions by ryan
11 years ago
Manuel Araoz
b402bbfa6c
fixing copay problems
11 years ago
Manuel Araoz
5c11ac3e87
malloc -> calloc, to fix linux version
11 years ago
Manuel Araoz
d313ed037e
trying to fix
11 years ago
Manuel Araoz
2c7c2d85b3
breaking
11 years ago
Manuel Araoz
a15962da88
fixing
11 years ago
Manuel Araoz
a57191c66f
working on fixing the wierd test
11 years ago
Manuel Araoz
a2b8bb0f51
even weirder fix
11 years ago
Manuel Araoz
7b3c6d5bcd
remove console.log
11 years ago
Manuel Araoz
9e46334d27
wierdest way of fixing the problem
11 years ago
Ryan X. Charles
c2e5a14eed
throw error when using invalid length hash in Address
I have often made the error of using a public key rather than the hash of the
public key when creating an address, leading to invalid addresses. I'm sure I'm
not the only one. This commit follows the principle of "fail early, fail often"
and simply throws an error if you try to insert something other than 20 bytes
long when creating an address, which would be the case when using a public key.
This way that common mistake should be reduced.
11 years ago
Gustavo Cortez
1d957b24d9
Exporting a constant on TransactionBuilder for use on Copay (to check available funds to spend). A simple test for this.
11 years ago
Devrandom
b523eee812
Switch BIP-0039 to sjcl in browser
11 years ago
Devrandom
79d50e92d4
BIP39 in browser
11 years ago
Devrandom
f2472e691b
Separate out BIP39
11 years ago
Devrandom
63f7e3d062
BIP39 implementation
11 years ago
Ryan X. Charles
338158ca46
fix sjcl issue on npm install
...by including sjcl locally
11 years ago
Ryan X. Charles
80ccaa8396
rename "rand" to more explanatory "getRandomSeed"
11 years ago
Ryan X. Charles
117eaa4288
remove underscore dependency to decrease bundle size
11 years ago
Gabe
8e96d1439d
check if seed is greater than 512 bits
11 years ago
Ryan X. Charles
af9fdff3a9
use SJCL AES to get ECIES working in the browser
11 years ago
Ryan X. Charles
e963ff3c45
add ECIES support in node - not browser
11 years ago
Rich Morgan
eab5c2896e
Fix to check for zero s value in sign function
If r OR s are zero then recalculate both r and s until they are both non-zero values.
11 years ago