xref: /aosp_15_r20/system/secretkeeper/comm/src/lib.rs (revision 3f8e9d82f4020c68ad19a99fc5fdc1fc90b79379)
1*3f8e9d82SAndroid Build Coastguard Worker /*
2*3f8e9d82SAndroid Build Coastguard Worker  * Copyright (C) 2023 The Android Open Source Project
3*3f8e9d82SAndroid Build Coastguard Worker  *
4*3f8e9d82SAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*3f8e9d82SAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*3f8e9d82SAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*3f8e9d82SAndroid Build Coastguard Worker  *
8*3f8e9d82SAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*3f8e9d82SAndroid Build Coastguard Worker  *
10*3f8e9d82SAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*3f8e9d82SAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*3f8e9d82SAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*3f8e9d82SAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*3f8e9d82SAndroid Build Coastguard Worker  * limitations under the License.
15*3f8e9d82SAndroid Build Coastguard Worker  */
16*3f8e9d82SAndroid Build Coastguard Worker 
17*3f8e9d82SAndroid Build Coastguard Worker //! This library exposes data structures and methods that can be used by Secretkeeper HAL & client
18*3f8e9d82SAndroid Build Coastguard Worker //! implementation. This is compatible with Secretkeeper HAL specification.
19*3f8e9d82SAndroid Build Coastguard Worker 
20*3f8e9d82SAndroid Build Coastguard Worker #![no_std]
21*3f8e9d82SAndroid Build Coastguard Worker extern crate alloc;
22*3f8e9d82SAndroid Build Coastguard Worker 
23*3f8e9d82SAndroid Build Coastguard Worker mod cbor_convert;
24*3f8e9d82SAndroid Build Coastguard Worker pub mod data_types;
25*3f8e9d82SAndroid Build Coastguard Worker pub mod wire;
26