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-rust.git.
from e63b8f3 Merge pull request #12 from sigp/mutability
new df62cee Cleaup tests and compiler warnings
new cd3c739 Update readme
new b114050 Merge pull request #13 from sigp/cleanup-tests
The 27 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:
Cargo.toml | 4 +-
TestALL.rs | 1459 --------------------
TestBLS.rs | 190 ---
TestNHS.rs | 77 --
readme.md | 33 +-
src/bls.rs | 40 +-
src/bls192.rs | 38 +
src/bls256.rs | 38 +
src/ecdh.rs | 156 +++
src/ecp.rs | 2 +-
src/gcm.rs | 2 -
src/lib.rs | 11 +-
src/mpin.rs | 226 +++-
src/mpin192.rs | 227 +++-
src/mpin256.rs | 227 +++-
src/nhs.rs | 50 +
src/roms/{rom_bn254CX_32.rs => rom_bn254cx_32.rs} | 6 +-
src/roms/{rom_bn254CX_64.rs => rom_bn254cx_64.rs} | 6 +-
src/rsa.rs | 71 +
src/test_utils/mod.rs | 21 +
tests/test_all.rs | 1473 ---------------------
tests/test_bls.rs | 190 ---
tests/test_nhs.rs | 71 -
23 files changed, 1131 insertions(+), 3487 deletions(-)
delete mode 100644 TestALL.rs
delete mode 100644 TestBLS.rs
delete mode 100644 TestNHS.rs
rename src/roms/{rom_bn254CX_32.rs => rom_bn254cx_32.rs} (99%)
rename src/roms/{rom_bn254CX_64.rs => rom_bn254cx_64.rs} (99%)
create mode 100644 src/test_utils/mod.rs
delete mode 100644 tests/test_all.rs
delete mode 100644 tests/test_bls.rs
delete mode 100644 tests/test_nhs.rs