tink_core/keyset/
mod.rs

1// Copyright 2020 The Tink-Rust Authors
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////////////////////////////////////////////////////////////////////////////////
16
17//! Provide methods to generate, read, write or validate keysets.
18
19mod binary_io;
20pub use binary_io::*;
21mod handle;
22pub use handle::*;
23#[cfg(feature = "json")]
24#[cfg_attr(docsrs, doc(cfg(feature = "json")))]
25mod json_io;
26#[cfg(feature = "json")]
27pub use json_io::*;
28mod manager;
29pub use manager::*;
30mod mem_io;
31pub use mem_io::*;
32mod reader;
33pub use reader::*;
34mod validation;
35pub use validation::*;
36mod writer;
37pub use writer::*;
38
39#[cfg(feature = "insecure")]
40#[cfg_attr(docsrs, doc(cfg(feature = "insecure")))]
41pub mod insecure;