This is an automated email from the ASF dual-hosted git repository.
kmccusker pushed a change to branch develop
in repository
https://gitbox.apache.org/repos/asf/incubator-milagro-crypto-js.git.
from 4b341c5 Merge pull request #8 from apache/update
add 6071f37 BLS signature and public key aggregation
add 233c526 added docker
add adc1453 add BLS test vectors
add 8631f9e sync code
add 3600422 moved examples to BLS381 curve
add 65f4b6b removed some brower tests
add 4d6eda7 fix lowercase javascript
add 749ae75 changed user name in example
new 9fe3501 Merge pull request #9 from apache/issue7
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:
.gitignore => .dockerignore | 3 +-
Dockerfile | 31 +
README.md | 28 +-
examples/browser/example_AES_ENCRYPTION.html | 149 ---
examples/browser/example_BLS.html | 10 +-
examples/browser/example_DVS_BLS383.html | 162 ---
examples/browser/example_ECC_BLS383_NIST521.html | 217 ----
examples/browser/example_ECC_NIST256.html | 201 ---
examples/browser/example_HASH.html | 115 --
examples/browser/example_MPIN_BLS383.html | 224 ----
examples/browser/example_MPIN_FULL_BLS383.html | 272 -----
examples/browser/example_MPIN_ONE_PASS_BLS383.html | 228 ----
examples/browser/example_MPIN_TP_BLS383.html | 210 ----
.../browser/example_RSA2048_ECDSA_NIST256.html | 211 ----
examples/browser/example_RSA2048_GENKEY.html | 176 ---
examples/browser/example_all.html | 1276 ++++++++++++++++++++
examples/node/example_BLS_BLS381.js | 132 ++
...example_DVS_BLS383.js => example_DVS_BLS381.js} | 2 +-
...83_NIST521.js => example_ECC_BLS381_NIST521.js} | 4 +-
...ample_MPIN_BLS383.js => example_MPIN_BLS381.js} | 2 +-
..._FULL_BLS383.js => example_MPIN_FULL_BLS381.js} | 2 +-
...S_BLS383.js => example_MPIN_ONE_PASS_BLS381.js} | 2 +-
package.json | 18 +-
src/bls.js | 35 +-
src/bls192.js | 35 +-
src/bls256.js | 36 +-
src/ecp.js | 25 +-
src/ecp2.js | 23 +-
src/ecp4.js | 23 +-
src/ecp8.js | 23 +-
src/pair.js | 31 +-
src/pair192.js | 31 +-
src/pair256.js | 31 +-
test.test | 0
test/test_BLS.js | 178 +++
35 files changed, 1872 insertions(+), 2274 deletions(-)
copy .gitignore => .dockerignore (88%)
create mode 100755 Dockerfile
delete mode 100644 examples/browser/example_AES_ENCRYPTION.html
delete mode 100644 examples/browser/example_DVS_BLS383.html
delete mode 100644 examples/browser/example_ECC_BLS383_NIST521.html
delete mode 100644 examples/browser/example_ECC_NIST256.html
delete mode 100644 examples/browser/example_HASH.html
delete mode 100644 examples/browser/example_MPIN_BLS383.html
delete mode 100644 examples/browser/example_MPIN_FULL_BLS383.html
delete mode 100644 examples/browser/example_MPIN_ONE_PASS_BLS383.html
delete mode 100644 examples/browser/example_MPIN_TP_BLS383.html
delete mode 100644 examples/browser/example_RSA2048_ECDSA_NIST256.html
delete mode 100644 examples/browser/example_RSA2048_GENKEY.html
create mode 100644 examples/browser/example_all.html
create mode 100644 examples/node/example_BLS_BLS381.js
rename examples/node/{example_DVS_BLS383.js => example_DVS_BLS381.js} (99%)
rename examples/node/{example_ECC_BLS383_NIST521.js =>
example_ECC_BLS381_NIST521.js} (98%)
rename examples/node/{example_MPIN_BLS383.js => example_MPIN_BLS381.js} (99%)
rename examples/node/{example_MPIN_FULL_BLS383.js =>
example_MPIN_FULL_BLS381.js} (99%)
rename examples/node/{example_MPIN_ONE_PASS_BLS383.js =>
example_MPIN_ONE_PASS_BLS381.js} (99%)
delete mode 100644 test.test
create mode 100644 test/test_BLS.js