gitoid 0.9.0

Git Object Identifiers in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Cryptography backends, providing hash function implementations.

#[cfg(feature = "backend-boringssl")]
pub mod boringssl;

#[cfg(feature = "backend-openssl")]
pub mod openssl;

#[cfg(feature = "backend-rustcrypto")]
pub mod rustcrypto;