rust-crypto icon indicating copy to clipboard operation
rust-crypto copied to clipboard

A (mostly) pure-Rust implementation of various cryptographic algorithms.

Results 103 rust-crypto issues
Sort by recently updated
recently updated
newest added

extern crate crypto; use crypto::digest::Digest; use crypto::sha3::Sha3; fn main() { let mut shake_128 = Sha3::shake_128(); shake_128.input_str("123"); println!("shake_128 {}",shake_128.result_str()); } //But It's noting Take an example for Sha3::shake_128()

Project: https://github.com/LuoZijun/crypto Status: dev

The CCM mode of AES encryption, a AEAD algorithm that is for example mandated in the [OSCOAP](https://tools.ietf.org/html/draft-ietf-core-object-security-00)) protocol, seems not to be implemented in rust-crypto. Please consider adding it and...

``` error: failed to run custom build command for `rust-crypto v0.2.36` Process didn't exit successfully: `C:\Users\kaoD\rustocin\target\debug\build\rust-crypto-0caf103d2b9a229d\build-script-build` (exit code: 101) --- stdout TARGET = Some("i686-pc-windows-gnu") OPT_LEVEL = Some("0") PROFILE = Some("debug")...

```rust error: failed to run custom build command for `rust-crypto v0.2.36` Caused by: process didn't exit successfully: `D:\RustProject\abs_admin\target\debug\build\rust-crypto-7dab7e69e58efb4c\build-script-build` (exit code: 101) --- stdout TARGET = Some("x86_64-pc-windows-gnu") OPT_LEVEL = Some("0") TARGET...

Is it possible to provide a demo of using salsa20. thank you!

If both slices have `len() == 0`, I think that get_unchecked will have undefined behavior. I'd say that this is the type of operation that the gain of not checking...

Some old versions of `rust-crypto` have dependencies specified with `"*"` version requirement (`rand = "*"`, `rustc-serialize = "*"`, `libc = "*"`, `gcc = "*"`, etc.). Crates with such vague dependency...

Is there a way to use pbkdf2 and get progress updates while it is deriving the key? If not, do you know of a nice way to write such a...

panda@panda-virtual-machine:~/rust/wasm/hello$ wasm-pack build [INFO]: Checking for the Wasm target... [INFO]: Compiling to Wasm... Compiling autocfg v0.1.7 Compiling rustc-serialize v0.3.24 Compiling wasm-bindgen-macro-support v0.2.54 error[E0046]: not all trait items implemented, missing: `encode`...