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

https://github.com/DaGenix/rust-crypto/blob/cc1a5fde1ce957bd1a8a2e30169443cdb4780111/src/util.rs#L32-L39 Hello, if a function's entire body is unsafe, the function is itself unsafe and should be marked appropriately, which will make the caller ignore the safety requirements that the...

hello, I build my project from armv7, but it build fail, see error : ![image](https://user-images.githubusercontent.com/24620124/219619414-8b2d96cd-05da-4a54-9d19-b515f2abc8b6.png) I use toolchain is [gcc-linaro-5.3.1-arm-linux-gnueabihf](https://snapshots.linaro.org/components/toolchain/binaries/5.3-2016.02-rc1/arm-linux-gnueabihf/gcc-linaro-5.3-2016.02-rc1-x86_64_arm-linux-gnueabihf.tar.xz), the toolchain from [linaro website](https://releases.linaro.org/) finally, think you for checking...

Signature verification fails, pleqse help! ``` use crypto::ed25519::{keypair, signature, verify}; fn main() { let seed: &[u8] = b"This is a seed"; let message: &[u8] = b"This is a test of...