identity_verification/jose/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
//! Provides JWK and JWS types and functionality.  

// Re-export necessary types from `identity_jose`.

pub mod jwk {
  //! Reexport of [identity_jose::jwk].

  pub use identity_jose::jwk::*;
}

pub mod jws {
  //! Reexport of [identity_jose::jwk].

  pub use identity_jose::jws::*;
}

pub mod jwu {
  //! Reexport of [identity_jose::jwu].

  pub use identity_jose::jwu::*;
}

pub mod error {
  //! Reexport of [identity_jose::error].

  pub use identity_jose::error::*;
}