This is an automated email from the ASF dual-hosted git repository. kmccusker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-milagro-crypto-js.git
commit 4b341c5d55d51f2c086fea47434d4b1783875852 Merge: b3f698d b974dc2 Author: Kealan McCusker <[email protected]> AuthorDate: Wed Jun 19 06:58:48 2019 +0100 Merge pull request #8 from apache/update resync code to golden repo .travis.yml | 22 +- LICENSE | 404 +++++++------- README.md | 59 +- VERSION | 2 +- examples/browser/example_BLS.html | 249 +++++++++ ...le_DVS_BN254CX.html => example_DVS_BLS383.html} | 4 +- ...IST521.html => example_ECC_BLS383_NIST521.html} | 4 +- ..._MPIN_BN254CX.html => example_MPIN_BLS383.html} | 4 +- ..._BN254CX.html => example_MPIN_FULL_BLS383.html} | 4 +- ...54CX.html => example_MPIN_ONE_PASS_BLS383.html} | 4 +- ...TP_BN254CX.html => example_MPIN_TP_BLS383.html} | 4 +- ...xample_DVS_BN254CX.js => example_DVS_BLS383.js} | 2 +- ...54_NIST521.js => example_ECC_BLS383_NIST521.js} | 4 +- ...mple_MPIN_BN254CX.js => example_MPIN_BLS383.js} | 2 +- ...FULL_BN254CX.js => example_MPIN_FULL_BLS383.js} | 2 +- ..._BN254CX.js => example_MPIN_ONE_PASS_BLS383.js} | 2 +- examples/node/example_MPIN_TP_BN254CX.js | 173 ------ package.json | 11 +- src/aes.js | 47 +- src/big.js | 73 ++- src/bls.js | 127 +++++ src/bls192.js | 126 +++++ src/bls256.js | 129 +++++ src/ctx.js | 94 +++- src/ecdh.js | 44 +- src/ecp.js | 206 ++++--- src/ecp2.js | 90 +-- src/ecp4.js | 84 +-- src/ecp8.js | 96 ++-- src/ff.js | 21 +- src/fp.js | 249 +++++++-- src/fp12.js | 554 ++++++++++++++----- src/fp16.js | 77 +-- src/fp2.js | 11 +- src/fp24.js | 583 ++++++++++++++------ src/fp4.js | 84 +-- src/fp48.js | 609 +++++++++++++++------ src/fp8.js | 76 +-- src/gcm.js | 50 +- src/hash256.js | 19 +- src/hash384.js | 19 +- src/hash512.js | 18 +- src/mpin.js | 34 +- src/mpin192.js | 9 +- src/mpin256.js | 9 +- src/newhope.js | 151 ----- src/nhs.js | 570 ------------------- src/pair.js | 300 ++++++---- src/pair192.js | 191 +++++-- src/pair256.js | 199 +++++-- src/rand.js | 28 +- src/rsa.js | 3 +- src/sha3.js | 28 +- test/test_BIG.js | 4 +- test/test_DVS.js | 5 +- test/{test_FP12.js => test_FP12_js} | 0 test/{test_FP16.js => test_FP16_js} | 0 test/{test_FP24.js => test_FP24_js} | 0 test/{test_FP2.js => test_FP2_js} | 0 test/{test_FP48.js => test_FP48_js} | 0 test/{test_FP4.js => test_FP4_js} | 0 test/{test_FP8.js => test_FP8_js} | 0 test/{test_FP.js => test_FP_js} | 0 test/test_MPIN.js | 4 +- test/test_NEWHOPE.js | 92 ---- test/test_RSA2048.js | 4 +- test/test_RSA3072.js | 4 +- test/test_RSA4096.js | 4 +- 68 files changed, 3502 insertions(+), 2579 deletions(-)
