wolfssl-wolfcrypt 2.0.0

Rust wrapper for wolfssl C library cryptographic functionality
1
2
3
4
5
6
7
use wolfssl_wolfcrypt::*;

#[test]
fn test_wolfcrypt_init_and_cleanup() {
    wolfcrypt_init().expect("Error with wolfcrypt_init()");
    wolfcrypt_cleanup().expect("Error with wolfcrypt_cleanup()");
}