[fastcrypto]

crate Docs Build status Apache2/MIT licensed Rust Version

fastcrypto` is a common cryptography library used in software at Mysten Labs. It is published independently encouraging reusability across different applications and domains. It is a wrapper library around several carefully selected crates with following considerations: - Security: Whether the libraries are vulnerable to known attack vectors or possible misuses. - Performance: Whether the crate performs cryptographic operations with speed after extensive benchmarking. This is critical for the Sui Network to be performant when signing and verifying large amounts of transactions and certificates. - Determinism: Whether the signature is non-malleable. - Popularity: Whether the library is used by other consensus critical systems.

Furthermore, we extend the selected libraries with additional features: - Robust testing framework: Wycheproof tests and prop tests are added when possible to protect against arbitrary inputs and crafted edge cases. - Zeroization: Sensitive private key materials are cleared from memory securely and proactively when it goes out of scope using zeroize trait. - Serialization: Effective and standardized serialization are required.

This library will be continuously updated with more schemes and its faster and more secure implementations based on benchmarking results, RFC updates and audit inputs.

This crate contains:

  1. A asynchronous signature service is provided for testing and benchmarking.

    Tests and Benchmarks

There exist tests for all the three schemes, which can be run by:
$ cargo test

One can compare all currently implemented schemes for sign, verify, verify_batch and key-generation by running: $ cargo bench

License

All crates licensed under either of