blob: e13d6c0c0727ab2adc49d619ecc61a85a001ffa9 [file] [log] [blame]
Janis Danisevskis43c89712020-08-03 23:42:42 +00001// Copyright 2020, The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//! This crate implements the Android Keystore 2.0 service.
Janis Danisevskis7d77a762020-07-20 13:03:31 -070016
Hasini Gunasinghe9ec096c2020-11-17 00:45:44 +000017pub mod auth_token_handler;
Joel Galenson26f4d012020-07-17 14:57:21 -070018pub mod database;
Hasini Gunasinghe3410f792020-09-14 17:55:21 +000019pub mod enforcements;
Janis Danisevskis7d77a762020-07-20 13:03:31 -070020pub mod error;
Janis Danisevskisa75e2082020-10-07 16:44:26 -070021pub mod globals;
Hasini Gunasinghe12486362020-07-24 18:40:20 +000022/// Internal Representation of Key Parameter and convenience functions.
23pub mod key_parameter;
Janis Danisevskis1af91262020-08-10 14:58:08 -070024pub mod operation;
Janis Danisevskis78bd48c2020-07-21 12:27:13 -070025pub mod permission;
Janis Danisevskis1af91262020-08-10 14:58:08 -070026pub mod security_level;
27pub mod service;
Janis Danisevskisa75e2082020-10-07 16:44:26 -070028pub mod utils;
Janis Danisevskisbf15d732020-12-08 10:35:26 -080029
30mod db_utils;
Janis Danisevskisb42fc182020-12-15 08:41:27 -080031mod super_key;
Janis Danisevskisbf15d732020-12-08 10:35:26 -080032
33#[cfg(test)]
34mod test {
35 pub mod utils;
36}