Merge pull request #200 from brycx/orion-alternative

rust-crypto: Add orion as alternative
This commit is contained in:
Tony Arcieri
2019-11-04 17:16:17 -08:00
committed by GitHub

View File

@@ -45,6 +45,13 @@ which algorithms you need:
- Public key encryption: NaCl "Box" (X25519 + XSalsa20Poly1305)
- Signature algorithms: Ed25519
- Short-input PRF: SipHash24
- [`orion`]:
- AEAD algorithms: ChaCha20Poly1305 (IETF version), XChaCha20Poly1305
- Digest algorithms: SHA-512, BLAKE2b
- Key derivation: HKDF
- MACs: HMAC, Poly1305
- Password hashing: PBKDF2
- Stream ciphers: ChaCha20 (IETF version), XChaCha20
[dalek-cryptography GitHub Org]: https://github.com/dalek-cryptography
[RustCrypto GitHub Org]: https://github.com/RustCrypto
@@ -76,4 +83,5 @@ which algorithms you need:
[`sodiumoxide`]: https://crates.io/crates/sodiumoxide
[`x25519-dalek`]: https://crates.io/crates/x25519-dalek
[`xsalsa20poly1305`]: https://crates.io/crates/xsalsa20poly1305
[`orion`]: https://crates.io/crates/orion
"""