1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! In-memory key serialization.

mod de;
mod error;
mod key;
mod ser;

#[doc(inline)]
pub use crate::de::from_key;
#[doc(inline)]
pub use crate::error::{Error, Result};
#[doc(inline)]
pub use crate::key::{Integer, Key};
#[doc(inline)]
pub use crate::ser::to_key;