From 7512207b54fa133c0d61730496a941fd6db02bd5 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Fri, 23 Feb 2024 21:26:02 -0800 Subject: [PATCH] re-export cryptoki Signed-off-by: Arthur Gautier --- cryptoki-rustcrypto/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cryptoki-rustcrypto/src/lib.rs b/cryptoki-rustcrypto/src/lib.rs index ac2dd57a..aae154cc 100644 --- a/cryptoki-rustcrypto/src/lib.rs +++ b/cryptoki-rustcrypto/src/lib.rs @@ -8,6 +8,8 @@ use cryptoki::{ session::Session, }; +pub use cryptoki; + pub mod ecdsa; pub mod rng; pub mod rsa;