This is an automated email from the ASF dual-hosted git repository.
kmccusker pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-milagro-crypto-js.git.
from b3f698d Merge pull request #2 from apache/update-readme
add f33178a resync code to golden repo
add 2eff8ec remove test_FP* tests
add b974dc2 remove newhope
new 4b341c5 Merge pull request #8 from apache/update
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.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(-)
create mode 100644 examples/browser/example_BLS.html
rename examples/browser/{example_DVS_BN254CX.html => example_DVS_BLS383.html}
(98%)
rename examples/browser/{example_ECC_BN254_NIST521.html =>
example_ECC_BLS383_NIST521.html} (98%)
rename examples/browser/{example_MPIN_BN254CX.html =>
example_MPIN_BLS383.html} (99%)
rename examples/browser/{example_MPIN_FULL_BN254CX.html =>
example_MPIN_FULL_BLS383.html} (99%)
rename examples/browser/{example_MPIN_ONE_PASS_BN254CX.html =>
example_MPIN_ONE_PASS_BLS383.html} (98%)
rename examples/browser/{example_MPIN_TP_BN254CX.html =>
example_MPIN_TP_BLS383.html} (98%)
rename examples/node/{example_DVS_BN254CX.js => example_DVS_BLS383.js} (99%)
rename examples/node/{example_ECC_BN254_NIST521.js =>
example_ECC_BLS383_NIST521.js} (98%)
rename examples/node/{example_MPIN_BN254CX.js => example_MPIN_BLS383.js} (99%)
rename examples/node/{example_MPIN_FULL_BN254CX.js =>
example_MPIN_FULL_BLS383.js} (99%)
rename examples/node/{example_MPIN_ONE_PASS_BN254CX.js =>
example_MPIN_ONE_PASS_BLS383.js} (99%)
delete mode 100644 examples/node/example_MPIN_TP_BN254CX.js
create mode 100644 src/bls.js
create mode 100644 src/bls192.js
create mode 100644 src/bls256.js
delete mode 100644 src/newhope.js
delete mode 100644 src/nhs.js
rename test/{test_FP12.js => test_FP12_js} (100%)
rename test/{test_FP16.js => test_FP16_js} (100%)
rename test/{test_FP24.js => test_FP24_js} (100%)
rename test/{test_FP2.js => test_FP2_js} (100%)
rename test/{test_FP48.js => test_FP48_js} (100%)
rename test/{test_FP4.js => test_FP4_js} (100%)
rename test/{test_FP8.js => test_FP8_js} (100%)
rename test/{test_FP.js => test_FP_js} (100%)
delete mode 100644 test/test_NEWHOPE.js