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 176c3f5  Merge pull request #2 from kirk-baird/formatting
     new d36115c  modify .gitignore
     new a3d3ebd  Formatting of some comments and BIG -> Big
     new ddb0937  Massive reformatting and style changes
     new fcc4c3a  Fix bn256CX and other minor issues
     new 8626350  Merge in branch develop
     new d358b74  Merge pull request #5 from sigp/formatting

The 9 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                    |   1 +
 BenchtestALL.rs               |  16 +-
 Cargo.toml                    |  12 +-
 readme.md                     |  37 ++--
 src/aes.rs                    |  65 +++---
 src/big.rs                    | 461 ++++++++++++++++++++----------------------
 src/bls.rs                    |  33 ++-
 src/bls192.rs                 |  29 ++-
 src/bls256.rs                 |  31 ++-
 src/dbig.rs                   | 123 +++++------
 src/ecdh.rs                   | 154 +++++++-------
 src/ecp.rs                    | 164 +++++++--------
 src/ecp2.rs                   | 124 ++++++------
 src/ecp4.rs                   | 100 ++++-----
 src/ecp8.rs                   | 156 +++++++-------
 src/ff.rs                     |  60 +++---
 src/fp.rs                     | 180 ++++++++---------
 src/fp12.rs                   |  84 ++++----
 src/fp16.rs                   |  30 +--
 src/fp2.rs                    |  32 +--
 src/fp24.rs                   | 102 +++++-----
 src/fp4.rs                    |  32 +--
 src/fp48.rs                   | 166 +++++++--------
 src/fp8.rs                    |  30 +--
 src/hash256.rs                |  16 +-
 src/mpin.rs                   | 160 +++++++--------
 src/mpin192.rs                |  70 +++----
 src/mpin256.rs                |  70 +++----
 src/nhs.rs                    |  10 +-
 src/pair.rs                   | 214 ++++++++++----------
 src/pair192.rs                | 130 ++++++------
 src/pair256.rs                | 178 ++++++++--------
 src/rand.rs                   |   2 +-
 src/roms/rom_anssi_32.rs      |  10 +-
 src/roms/rom_anssi_64.rs      |  10 +-
 src/roms/rom_bls24_32.rs      |  10 +-
 src/roms/rom_bls24_64.rs      |  10 +-
 src/roms/rom_bls381_32.rs     |  10 +-
 src/roms/rom_bls381_64.rs     |  10 +-
 src/roms/rom_bls383_32.rs     |  10 +-
 src/roms/rom_bls383_64.rs     |  10 +-
 src/roms/rom_bls461_32.rs     |  10 +-
 src/roms/rom_bls461_64.rs     |  10 +-
 src/roms/rom_bls48_32.rs      |  10 +-
 src/roms/rom_bls48_64.rs      |  10 +-
 src/roms/rom_bn254CX_32.rs    |  10 +-
 src/roms/rom_bn254CX_64.rs    |  10 +-
 src/roms/rom_bn254_32.rs      |  10 +-
 src/roms/rom_bn254_64.rs      |  10 +-
 src/roms/rom_brainpool_32.rs  |  10 +-
 src/roms/rom_brainpool_64.rs  |  10 +-
 src/roms/rom_c25519_32.rs     |  10 +-
 src/roms/rom_c25519_64.rs     |  10 +-
 src/roms/rom_c41417_32.rs     |  10 +-
 src/roms/rom_c41417_64.rs     |  10 +-
 src/roms/rom_ed25519_32.rs    |  10 +-
 src/roms/rom_ed25519_64.rs    |  10 +-
 src/roms/rom_fp256bn_32.rs    |  10 +-
 src/roms/rom_fp256bn_64.rs    |  10 +-
 src/roms/rom_fp512bn_32.rs    |  10 +-
 src/roms/rom_fp512bn_64.rs    |  10 +-
 src/roms/rom_goldilocks_32.rs |  10 +-
 src/roms/rom_goldilocks_64.rs |  10 +-
 src/roms/rom_hifive_32.rs     |  10 +-
 src/roms/rom_hifive_64.rs     |  10 +-
 src/roms/rom_nist256_32.rs    |  10 +-
 src/roms/rom_nist256_64.rs    |  10 +-
 src/roms/rom_nist384_32.rs    |  10 +-
 src/roms/rom_nist384_64.rs    |  10 +-
 src/roms/rom_nist521_32.rs    |  10 +-
 src/roms/rom_nist521_64.rs    |  10 +-
 src/roms/rom_nums256e_32.rs   |  10 +-
 src/roms/rom_nums256e_64.rs   |  10 +-
 src/roms/rom_nums256w_32.rs   |  10 +-
 src/roms/rom_nums256w_64.rs   |  10 +-
 src/roms/rom_nums384e_32.rs   |  10 +-
 src/roms/rom_nums384e_64.rs   |  10 +-
 src/roms/rom_nums384w_32.rs   |  10 +-
 src/roms/rom_nums384w_64.rs   |  10 +-
 src/roms/rom_nums512e_32.rs   |  10 +-
 src/roms/rom_nums512e_64.rs   |  10 +-
 src/roms/rom_nums512w_32.rs   |  10 +-
 src/roms/rom_nums512w_64.rs   |  10 +-
 src/roms/rom_secp256k1_32.rs  |  10 +-
 src/roms/rom_secp256k1_64.rs  |  10 +-
 src/sha3.rs                   |   2 +-
 src/types.rs                  |  38 ++--
 87 files changed, 1810 insertions(+), 1822 deletions(-)

Reply via email to