identity_verification/jose/mod.rs
1// Copyright 2020-2023 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3//! Provides JWK and JWS types and functionality.
4
5// Re-export necessary types from `identity_jose`.
6
7pub mod jwk {
8 //! Reexport of [identity_jose::jwk].
9
10 pub use identity_jose::jwk::*;
11}
12
13pub mod jws {
14 //! Reexport of [identity_jose::jwk].
15
16 pub use identity_jose::jws::*;
17}
18
19pub mod jwu {
20 //! Reexport of [identity_jose::jwu].
21
22 pub use identity_jose::jwu::*;
23}
24
25pub mod error {
26 //! Reexport of [identity_jose::error].
27
28 pub use identity_jose::error::*;
29}