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:
Traits that should be implemented by concrete types representing digital cryptographic materials.
SigningKey
]: Trait implemented by the private key with associated types of its public key and signature. VerifyingKey
]: Trait implemented by the public key with associated types of its private key and signature. It also includes a default implementation of batch verification that fails on empty batch verification.Authenticator
]: Trait implemented by the signature with associated types of its public key and private key.AggregateAuthenticator
]: Trait implemented by the aggregated signature, which allows adding signatures to the aggregated signature and verifying against the public keys with the corresponding messages.KeyPair
]: Trait represents a public/private keypair, which includes the common get priv/pub key functions and a keypair generation function with a seeded randomness.ToFromBytes
]: Trait that aims to minimize the number of steps involved in obtaining a serializable key.Concrete signature schemes of type that implement the recommended traits required for cryptographic agility.
ed25519-consensus
crate. Compliant to ZIP-215 that defines the signature validity that is lacking from RFC8032 but critical for consensus algorithms. ed25519-dalek
is fully deprecated due to the recently discovered Chalkias double pub-key api vulnerability.blst
crate written in Assembly and C that optimizes for performance and security. G1 and G2 points are serialized following ZCash specification in compressed format. Provides methods for verifying signatures in the G1 group against public keys in the G2 group. Provides methods for aggregating signatures and fast verifying aggregated signatures, where public keys are assumed to be verified for proof of possession.Utility functions that serves as the underlying RUST implementation for the Move smart contract api.
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
All crates licensed under either of