Skip to main content

web_eid/
lib.rs

1//! Web eID client library.
2
3mod auth;
4mod error;
5mod sign;
6
7pub use auth::{authenticate, AuthToken, TOKEN_FORMAT};
8pub use error::{Result, WebEidError};
9pub use sign::{recommended_hash, sign};
10
11pub use esteid_cryptoki::{modules, EstEidError, IdCard};
12pub use tokenkey::{EcCurve, Hash, KeyAlgorithm, TokenkeyError};