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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * NetHSM
 *
 * All endpoints expect exactly the specified JSON. Additional properties will cause a Bad Request Error (400). All HTTP errors contain a JSON structure with an explanation of type string. All [base64](https://tools.ietf.org/html/rfc4648#section-4) encoded values are Big Endian.
 *
 * The version of the OpenAPI document: v1
 * Contact: Nitrokey <info@nitrokey.com>
 * Generated by: https://openapi-generator.tech
 */

///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum SignMode {
    #[serde(rename = "PKCS1")]
    Pkcs1,
    #[serde(rename = "PSS_MD5")]
    PssMd5,
    #[serde(rename = "PSS_SHA1")]
    PssSha1,
    #[serde(rename = "PSS_SHA224")]
    PssSha224,
    #[serde(rename = "PSS_SHA256")]
    PssSha256,
    #[serde(rename = "PSS_SHA384")]
    PssSha384,
    #[serde(rename = "PSS_SHA512")]
    PssSha512,
    #[serde(rename = "EdDSA")]
    EdDsa,
    #[serde(rename = "ECDSA")]
    Ecdsa,
}

impl ToString for SignMode {
    fn to_string(&self) -> String {
        match self {
            Self::Pkcs1 => String::from("PKCS1"),
            Self::PssMd5 => String::from("PSS_MD5"),
            Self::PssSha1 => String::from("PSS_SHA1"),
            Self::PssSha224 => String::from("PSS_SHA224"),
            Self::PssSha256 => String::from("PSS_SHA256"),
            Self::PssSha384 => String::from("PSS_SHA384"),
            Self::PssSha512 => String::from("PSS_SHA512"),
            Self::EdDsa => String::from("EdDSA"),
            Self::Ecdsa => String::from("ECDSA"),
        }
    }
}

impl Default for SignMode {
    fn default() -> SignMode {
        Self::Pkcs1
    }
}