Artyom Pavlov
Artyom Pavlov
@spacekookie The main goal of RustCrypto is to provide modular foundation for Rust crypto ecosystem. We definitely have plans for higher level algorithms, but first we need to work out...
@synixebrett What algorithms do you need? I would recommend to migrate to [RustCrypto](https://github.com/RustCrypto) crates if they cover you needs (and if not, feel free to ask us).
This crate is unmaintained. See: https://rustsec.org/advisories/RUSTSEC-2016-0005.html
IIURC it's possible, but I would recommend to use [`sha2`](https://docs.rs/sha2/) crate instead. It [supports](https://github.com/RustCrypto/hashes#usage) streaming messages processing. BTW, it's not encryption, but hashing. ;)
This crate is unmaintained. See: https://rustsec.org/advisories/RUSTSEC-2016-0005.html
@jhwgh1968 Check out the [`ccm`](https://docs.rs/ccm/) crate, which is part of the [RustCrypto](https://github.com/RustCrypto) project.
Take a look at https://github.com/RustCrypto, it's a project started two years ago, which aims to supersede `rust-crypto` by developing an ecosystem of cryptographic crates, instead of a single monolithic crate.
You could instead take a look at [RustCrypto](https://github.com/RustCrypto) organization. One of the goals of this project is to develop cryptographic crates with `no_std` support if its possible. What algorithms do...
Regarding Curve25519 I would recommend to look at `curve25519-dalek` crate instead of using code from rust-crypto. About scrypt, I think it's possible to write a generic implementation using `typenum` and...
I strongly recommend to use the [`salsa20`](https://docs.rs/salsa20/) crate instead.