web-eid 0.1.0

Web eID client for authentication and signing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Web eID client library.

mod auth;
mod error;
mod sign;

pub use auth::{authenticate, AuthToken, TOKEN_FORMAT};
pub use error::{Result, WebEidError};
pub use sign::{recommended_hash, sign};

pub use esteid_cryptoki::{modules, EstEidError, IdCard};
pub use tokenkey::{EcCurve, Hash, KeyAlgorithm, TokenkeyError};