| commit | 39da68f22fb420d069c1e0b2796e53c728839437 | [log] [tgz] |
|---|---|---|
| author | Nabil Wadih <nwadih@google.com> | Thu Feb 16 18:07:41 2023 -0800 |
| committer | Boringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Mar 14 22:03:44 2023 +0000 |
| tree | bba474ecd645180446d1f03df0f6776041ef6e06 | |
| parent | 6f3e8229bb10882688c3ad1b0a76154e61934c77 [diff] [blame] |
Rust bindings to boringssl plain AES implementation Change-Id: Idbf0be16fbda2f0cb2444837021d4f95c29a1857 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/57405 Reviewed-by: Bob Beck <bbe@google.com> Commit-Queue: Bob Beck <bbe@google.com>
diff --git a/rust/bssl-crypto/src/lib.rs b/rust/bssl-crypto/src/lib.rs index 166f999..2c8ac72 100644 --- a/rust/bssl-crypto/src/lib.rs +++ b/rust/bssl-crypto/src/lib.rs
@@ -26,6 +26,9 @@ extern crate core; use core::ops::Not; +/// BoringSSL implemented plain aes operations. +pub mod aes; + /// BoringSSL implemented hmac operations. pub mod hmac;