krill 0.16.0

Resource Public Key Infrastructure (RPKI) daemon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod error;
use rpki::ca::idexchange::MyHandle;

pub use self::error::*;

mod signing;
pub use self::signing::*;

pub type SignerHandle = MyHandle;

pub type CryptoResult<T> = std::result::Result<T, self::error::Error>;

#[cfg(feature = "hsm")]
pub use self::signers::pkcs11::signer::{
    Pkcs11ConfigurablePrivateKeyAttributes,
    Pkcs11ConfigurablePublicKeyAttributes, Pkcs11ConfigurableSecrets,
};