commit | ca0efb1f27551ee857aad162b5e59c06deca3862 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Thu Oct 01 14:32:30 2020 -0700 |
committer | Joel Galenson <jgalenson@google.com> | Mon Nov 02 07:21:11 2020 -0800 |
tree | b70a801a6b37fb1a8c725664961a09033cfea326 | |
parent | 552c0ca4437dd2b42a498eed085aa1fe214736f4 [diff] [blame] |
Add crypto libraries Add C++ versions of the BoringSSL crypto functions we need (copied from keystore) and create Rust wrappers for them. Test: atest keystore2_test Change-Id: I21ff8630df26ca73ae36395c5303270e96a6deb6
diff --git a/keystore2/src/lib.rs b/keystore2/src/lib.rs index 067399e..3e13c5f 100644 --- a/keystore2/src/lib.rs +++ b/keystore2/src/lib.rs
@@ -14,6 +14,7 @@ //! This crate implements the Android Keystore 2.0 service. +mod crypto; pub mod database; pub mod error; pub mod globals;