identity_jose/jws/
mod.rs

1// Copyright 2020-2023 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! JSON Web Signatures ([JWS](https://tools.ietf.org/html/rfc7515))
5//!
6//! The encoding and decoding APIs are strongly informed by the requirements of the higher level functionality
7//! offered by the IOTA Identity library. Hence these APIs may possibly not be immediately recognizable from a standard
8//! JWT/JWS perspective. See `identity_jose/examples/jws_encoding_decoding.rs` for a complete example of how to encode
9//! and then decode a JWS.
10
11mod algorithm;
12mod charset;
13mod custom_verification;
14mod decoder;
15mod encoding;
16mod format;
17mod header;
18mod recipient;
19
20pub use self::algorithm::*;
21pub use self::charset::*;
22pub use self::custom_verification::*;
23pub use self::decoder::*;
24pub use self::encoding::*;
25pub use self::format::*;
26pub use self::header::*;
27pub use self::recipient::*;