jose 0.0.2

A JSON Object Signing and Encryption implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Digital Signature with RSASSA-PSS as defined in [section 3.5 of RFC 7518]
///
/// [section 3.5 of RFC 7518]: <https://datatracker.ietf.org/doc/html/rfc7518#section-3.5>
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum RsassaPss {
    /// RSASSA-PSS using SHA-256 and MGF1 with SHA-256
    Ps256,
    /// RSASSA-PSS using SHA-384 and MGF1 with SHA-384
    Ps384,
    /// RSASSA-PSS using SHA-512 and MGF1 with SHA-512
    Ps512,
}