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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
//! Builders for the SOP operations.

use std::{
    fmt,
    io,
    time::SystemTime,
};

use super::{
    Error,
    ParseError,
    Load,
    Password,
    Result,
    SOP,
    Save,
    SessionKey,
};

/// Builder for [`SOP::version`].
pub trait Version<'s> {
    /// Returns name and version of the SOP implementation.
    fn frontend(&self) -> Result<VersionInfo>;

    /// Returns name and version of the primary underlying OpenPGP
    /// toolkit.
    fn backend(&self) -> Result<VersionInfo>;

    /// Returns extended version information.
    ///
    /// The information has no defined structure and may contain any
    /// information deemed useful by the implementer.
    fn extended(&self) -> Result<String>;
}

/// Represents a name and version tuple.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct VersionInfo {
    /// Name of the implementation, library, or additional component.
    pub name: String,
    /// Version string.
    pub version: String,
}

impl fmt::Display for VersionInfo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{} {}", self.name, self.version)
    }
}

/// Builder for [`SOP::generate_key`].
pub trait GenerateKey<'s, S: SOP<'s>, Keys: Load<'s, S> + Save> {
    /// Lists profiles for this subcommand.
    fn list_profiles(&self) -> Vec<(String, String)> {
        vec![]
    }

    /// Selects a profile for this subcommand.
    ///
    /// Valid profiles can be queried using
    /// [`GenerateKey::list_profiles`].
    fn profile(self: Box<Self>, _profile: &str)
               -> Result<Box<dyn GenerateKey<'s, S, Keys> + 's>> {
        Err(Error::UnsupportedProfile)
    }

    /// Generates signing-only keys.
    fn signing_only(self: Box<Self>) -> Box<dyn GenerateKey<'s, S, Keys> + 's>;

    /// Protects the newly generated key with the given password.
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn GenerateKey<'s, S, Keys> + 's>>;

    /// Adds a User ID.
    fn userid(self: Box<Self>, userid: &str) -> Box<dyn GenerateKey<'s, S, Keys> + 's>;

    /// Generates the OpenPGP key.
    fn generate(self: Box<Self>) -> Result<Keys>;
}

/// Builder for [`SOP::change_key_password`].
pub trait ChangeKeyPassword<'s, S: SOP<'s>, Keys: Load<'s, S>> {
    /// Supplies the new password to lock the keys with.
    ///
    /// If this method is not invoked, the keys are unlocked.
    fn new_key_password(self: Box<Self>, password: Password)
                        -> Result<Box<dyn ChangeKeyPassword<'s, S, Keys> + 's>>;

    /// Supplies a password to unlock the keys with.
    ///
    /// All passwords are tried.  If unlocking a key fails, the whole
    /// operation fails with [`Error::KeyIsProtected`].
    fn old_key_password(self: Box<Self>, password: Password)
                        -> Result<Box<dyn ChangeKeyPassword<'s, S, Keys> + 's>>;

    /// Updates `keys`.
    fn keys(self: Box<Self>, keys: &Keys) -> Result<Keys>;
}

/// Builder for [`SOP::revoke_key`].
pub trait RevokeKey<'s, S: SOP<'s>, Certs: Save, Keys: Load<'s, S>> {
    /// Supplies a password to unlock the keys with.
    ///
    /// All passwords are tried.  If unlocking a key fails, the whole
    /// operation fails with [`Error::KeyIsProtected`].
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn RevokeKey<'s, S, Certs, Keys> + 's>>;

    /// Revokes `keys`.
    fn keys(self: Box<Self>, keys: &Keys) -> Result<Certs>;
}

/// Builder for [`SOP::extract_cert`].
pub trait ExtractCert<'s, S: SOP<'s>, Certs: Save, Keys: Load<'s, S>> {
    /// Extracts the certs from `keys`.
    fn keys(self: Box<Self>, keys: &Keys) -> Result<Certs>;
}

/// Builder for [`SOP::sign`].
pub trait Sign<'s, S: SOP<'s>, Keys: Load<'s, S>, Sigs: Save> {
    /// Sets signature mode.
    fn mode(self: Box<Self>, mode: SignAs)
            -> Box<dyn Sign<'s, S, Keys, Sigs> + 's>;

    /// Adds the signer keys.
    fn keys(self: Box<Self>, keys: &Keys)
            -> Result<Box<dyn Sign<'s, S, Keys, Sigs> + 's>>;

    /// Adds a password to unlock the signing keys with.
    ///
    /// All supplied passwords will be used to try to unlock all
    /// signing keys.
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn Sign<'s, S, Keys, Sigs> + 's>>;

    /// Signs data.
    fn data(self: Box<Self>, data: &mut (dyn io::Read + Send + Sync))
            -> Result<(Micalg, Sigs)>;
}

/// Builder for [`SOP::verify`].
pub trait Verify<'s, S: SOP<'s>, Certs: Load<'s, S>, Sigs: Load<'s, S>> {
    /// Makes SOP consider signatures before this date invalid.
    fn not_before(self: Box<Self>, t: SystemTime)
                  -> Box<dyn Verify<'s, S, Certs, Sigs> + 's>;

    /// Makes SOP consider signatures after this date invalid.
    fn not_after(self: Box<Self>, t: SystemTime)
                 -> Box<dyn Verify<'s, S, Certs, Sigs> + 's>;

    /// Adds the verification certs.
    fn certs(self: Box<Self>, certs: &Certs)
             -> Result<Box<dyn Verify<'s, S, Certs, Sigs> + 's>>;

    /// Provides the signatures.
    fn signatures<'sigs>(self: Box<Self>, signatures: &'sigs Sigs)
                         -> Result<Box<dyn VerifySignatures + 'sigs>>
    where
        's: 'sigs;
}

/// Finalizes detached signature verification.
pub trait VerifySignatures<'sigs> {
    /// Verifies the authenticity of `data`.
    fn data(self: Box<Self>,
            data: &mut (dyn io::Read + Send + Sync))
            -> Result<Vec<Verification>>;
}

/// Builder for [`SOP::encrypt`].
pub trait Encrypt<'s, S: SOP<'s>, Certs: Load<'s, S>, Keys: Load<'s, S>> {
    /// Disables armor encoding.
    fn no_armor(self: Box<Self>) -> Box<dyn Encrypt<'s, S, Certs, Keys> + 's>;

    /// Lists profiles for this subcommand.
    fn list_profiles(&self) -> Vec<(String, String)> {
        vec![]
    }

    /// Selects a profile for this subcommand.
    ///
    /// Valid profiles can be queried using
    /// [`GenerateKey::list_profiles`].
    fn profile(self: Box<Self>, _profile: &str)
               -> Result<Box<dyn Encrypt<'s, S, Certs, Keys> + 's>> {
        Err(Error::UnsupportedProfile)
    }

    /// Sets encryption mode.
    fn mode(self: Box<Self>, mode: EncryptAs) -> Box<dyn Encrypt<'s, S, Certs, Keys> + 's>;

    /// Adds the signer keys.
    fn sign_with_keys(self: Box<Self>, keys: &Keys)
                      -> Result<Box<dyn Encrypt<'s, S, Certs, Keys> + 's>>;

    /// Adds a password to unlock the signing keys with.
    ///
    /// All supplied passwords will be used to try to unlock all
    /// signing keys.
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn Encrypt<'s, S, Certs, Keys> + 's>>;

    /// Encrypts with the given password.
    fn with_password(self: Box<Self>, password: Password)
                     -> Result<Box<dyn Encrypt<'s, S, Certs, Keys> + 's>>;

    /// Encrypts with the given certs.
    fn with_certs(self: Box<Self>, certs: &Certs)
                  -> Result<Box<dyn Encrypt<'s, S, Certs, Keys> + 's>>;

    /// Encrypts the given data yielding the ciphertext.
    fn plaintext<'d>(self: Box<Self>,
                     plaintext: &'d mut (dyn io::Read + Send + Sync))
        -> Result<Box<dyn Ready<Option<SessionKey>> + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::decrypt`].
pub trait Decrypt<'s, S: SOP<'s>, Certs: Load<'s, S>, Keys: Load<'s, S>> {
    /// Makes SOP consider signatures before this date invalid.
    fn verify_not_before(self: Box<Self>,
                         t: SystemTime)
                         -> Box<dyn Decrypt<'s, S, Certs, Keys> + 's>;

    /// Makes SOP consider signatures after this date invalid.
    fn verify_not_after(self: Box<Self>,
                        t: SystemTime)
                        -> Box<dyn Decrypt<'s, S, Certs, Keys> + 's>;

    /// Adds the verification certs.
    fn verify_with_certs(self: Box<Self>,
                         certs: &Certs)
                         -> Result<Box<dyn Decrypt<'s, S, Certs, Keys> + 's>>;

    /// Tries to decrypt with the given session key.
    fn with_session_key(self: Box<Self>, sk: SessionKey)
                        -> Result<Box<dyn Decrypt<'s, S, Certs, Keys> + 's>>;

    /// Tries to decrypt with the given password.
    fn with_password(self: Box<Self>, password: Password)
                     -> Result<Box<dyn Decrypt<'s, S, Certs, Keys> + 's>>;

    /// Adds the decryption keys.
    fn with_keys(self: Box<Self>, key: &Keys)
                 -> Result<Box<dyn Decrypt<'s, S, Certs, Keys> + 's>>;

    /// Adds a password to unlock the decryption keys with.
    ///
    /// All supplied passwords will be used to try to unlock all keys.
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn Decrypt<'s, S, Certs, Keys> + 's>>;

    /// Decrypts `ciphertext`, returning verification results and
    /// plaintext.
    fn ciphertext<'d>(self: Box<Self>,
                      ciphertext: &'d mut (dyn io::Read + Send + Sync))
                      -> Result<Box<dyn Ready<(Option<SessionKey>,
                                               Vec<Verification>)> + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::armor`].
pub trait Armor<'s> {
    /// Overrides automatic detection of label.
    #[deprecated]
    fn label(self: Box<Self>, label: ArmorLabel) -> Box<dyn Armor<'s> + 's>;

    /// Armors `data`.
    fn data<'d>(self: Box<Self>, data: &'d mut (dyn io::Read + Send + Sync))
        -> Result<Box<dyn Ready + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::dearmor`].
pub trait Dearmor<'s> {
    /// Dearmors `data`.
    fn data<'d>(self: Box<Self>, data: &'d mut (dyn io::Read + Send + Sync))
        -> Result<Box<dyn Ready + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::inline_detach`].
pub trait InlineDetach<'s, Sigs: Save> {
    /// Splits Signatures from the Inline-Signed Message.
    fn message<'d>(self: Box<Self>,
                   data: &'d mut (dyn io::Read + Send + Sync))
                   -> Result<Box<dyn Ready<Sigs> + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::inline_verify`].
pub trait InlineVerify<'s, S: SOP<'s>, Certs: Load<'s, S>> {
    /// Makes SOP consider signatures before this date invalid.
    fn not_before(self: Box<Self>, t: SystemTime) -> Box<dyn InlineVerify<'s, S, Certs> + 's>;

    /// Makes SOP consider signatures after this date invalid.
    fn not_after(self: Box<Self>, t: SystemTime) -> Box<dyn InlineVerify<'s, S, Certs> + 's>;

    /// Adds the verification certs.
    fn certs(self: Box<Self>, certs: &Certs)
             -> Result<Box<dyn InlineVerify<'s, S, Certs> + 's>>;

    /// Verifies an Inline-Signed Message.
    fn message<'d>(self: Box<Self>,
                   data: &'d mut (dyn io::Read + Send + Sync))
                   -> Result<Box<dyn Ready<Vec<Verification>> + 'd>>
    where
        's: 'd;
}

/// Builder for [`SOP::inline_sign`].
pub trait InlineSign<'s, S: SOP<'s>, Keys: Load<'s, S>> {
    /// Disables armor encoding.
    fn no_armor(self: Box<Self>) -> Box<dyn InlineSign<'s, S, Keys> + 's>;

    /// Sets signature mode.
    fn mode(self: Box<Self>, mode: InlineSignAs) -> Box<dyn InlineSign<'s, S, Keys> + 's>;

    /// Adds the signer keys.
    fn keys(self: Box<Self>, keys: &Keys)
            -> Result<Box<dyn InlineSign<'s, S, Keys> + 's>>;

    /// Adds a password to unlock the signing keys with.
    ///
    /// All supplied passwords will be used to try to unlock all
    /// signing keys.
    fn with_key_password(self: Box<Self>, password: Password)
                         -> Result<Box<dyn InlineSign<'s, S, Keys> + 's>>;

    /// Signs data.
    fn data<'d>(self: Box<Self>, data: &'d mut (dyn io::Read + Send + Sync))
            -> Result<Box<dyn Ready + 'd>>
    where
        's: 'd;
}

/// An operation that returns a value ready to be executed.
///
/// To execute the operation, either supply an [`std::io::Write`]r
/// using [`Ready::to_writer`] to write the resulting data to, or use
/// [`Ready::to_vec`] to write to a `Vec<u8>`.
pub trait Ready<T = ()> {
    /// Executes the operation writing the result to `sink`.
    fn to_writer(self: Box<Self>, sink: &mut (dyn io::Write + Send + Sync))
        -> Result<T>;

    /// Executes the operation writing the result into a `Vec<u8>`.
    fn to_vec(self: Box<Self>) -> Result<(T, Vec<u8>)> {
        let mut v = Vec::new();
        let r = self.to_writer(&mut v)?;
        Ok((r, v))
    }
}

/// A successful signature verification.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Verification {
    creation_time: SystemTime,
    signing_key_fingerprint: String,
    signing_cert_fingerprint: String,
    signature_mode: SignatureMode,
    message: Option<String>,
}

#[cfg(feature = "cli")]
impl fmt::Display for Verification {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f,
               "{} {} {} {}{}",
               chrono::DateTime::<chrono::Utc>::from(self.creation_time())
               .format("%Y-%m-%dT%H:%M:%SZ"),
               self.signing_key_fingerprint(),
               self.signing_cert_fingerprint(),
               self.signature_mode(),
               if let Some(m) = self.message() {
                   format!(" {}", m)
               } else {
                   "".into()
               })
    }
}

impl Verification {
    /// Creates a `Verification` object.
    pub fn new<'m, T, K, C, M>(creation_time: T,
                               signing_key_fingerprint: K,
                               signing_cert_fingerprint: C,
                               signature_mode: SignatureMode,
                               message: M)
                           -> Result<Verification>
    where T: Into<SystemTime>,
          K: ToString,
          C: ToString,
          M: Into<Option<&'m str>>,
    {
        fn normalize(s: String) -> Result<String> {
            // XXX
            Ok(s)
        }
        let signing_key_fingerprint =
            normalize(signing_key_fingerprint.to_string())?;
        let signing_cert_fingerprint =
            normalize(signing_cert_fingerprint.to_string())?;

        Ok(Verification {
            creation_time: creation_time.into(),
            signing_key_fingerprint,
            signing_cert_fingerprint,
            signature_mode,
            message: message.into().map(Into::into),
        })
    }

    /// Returns the signature's creation time.
    pub fn creation_time(&self) -> SystemTime {
        self.creation_time
    }

    /// Returns the fingerprint of the signing (sub)key.
    pub fn signing_key_fingerprint(&self) -> &str {
        &self.signing_key_fingerprint
    }

    /// Returns the fingerprint of the signing certificate.
    pub fn signing_cert_fingerprint(&self) -> &str {
        &self.signing_cert_fingerprint
    }

    /// Returns the signature mode.
    pub fn signature_mode(&self) -> SignatureMode {
        self.signature_mode
    }

    /// Returns a free-form message describing the verification.
    pub fn message(&self) -> Option<&str> {
        self.message.as_ref().map(AsRef::as_ref)
    }
}

/// Indicates the type of signature in a `Verification`.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum SignatureMode {
    Text,
    Binary,
}

#[cfg(feature = "cli")]
impl fmt::Display for SignatureMode {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            SignatureMode::Text => f.write_str("mode:text"),
            SignatureMode::Binary => f.write_str("mode:binary"),
        }
    }
}

/// Signature type.
///
/// This is used by [`SOP::sign`] to select the signature type.  See
/// [`sop sign`].
///
///   [`sop sign`]: https://www.ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-08.html#name-sign-create-detached-signat
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum SignAs {
    Binary,
    Text,
}

impl Default for SignAs {
    fn default() -> Self {
        SignAs::Binary
    }
}

impl From<EncryptAs> for SignAs {
    fn from(a: EncryptAs) -> Self {
        match a {
            EncryptAs::Binary => SignAs::Binary,
            EncryptAs::Text => SignAs::Text,
        }
    }
}

impl std::str::FromStr for SignAs {
    type Err = ParseError;
    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s {
            "binary" => Ok(SignAs::Binary),
            "text" => Ok(SignAs::Text),
            _ => Err(ParseError(format!(
                "{:?}, expected one of {{binary|text}}", s))),
        }
    }
}

impl fmt::Display for SignAs {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            SignAs::Binary => f.write_str("binary"),
            SignAs::Text => f.write_str("text"),
        }
    }
}

/// Inline Signature type.
///
/// This is used by [`SOP::inline_sign`] to select the signature type.
/// See [`sop inline-sign`].
///
///   [`sop inline-sign`]: https://www.ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-08.html#name-inline-sign-create-an-inlin
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum InlineSignAs {
    Binary,
    Text,
    ClearSigned,
}

impl Default for InlineSignAs {
    fn default() -> Self {
        InlineSignAs::Binary
    }
}

impl std::str::FromStr for InlineSignAs {
    type Err = ParseError;
    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s {
            "binary" => Ok(InlineSignAs::Binary),
            "text" => Ok(InlineSignAs::Text),
            "clearsigned" => Ok(InlineSignAs::ClearSigned),
            _ => Err(ParseError(format!(
                "{:?}, expected one of {{binary|text|clearsigned}}", s))),
        }
    }
}

impl fmt::Display for InlineSignAs {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            InlineSignAs::Binary => f.write_str("binary"),
            InlineSignAs::Text => f.write_str("text"),
            InlineSignAs::ClearSigned => f.write_str("clearsigned"),
        }
    }
}

/// Plaintext data format.
///
/// This is used by [`SOP::encrypt`] to select the data format.  See
/// [`sop encrypt`].
///
///   [`sop encrypt`]: https://www.ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-08.html#name-encrypt-encrypt-a-message
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum EncryptAs {
    Binary,
    Text,
}

impl Default for EncryptAs {
    fn default() -> Self {
        EncryptAs::Binary
    }
}

impl std::str::FromStr for EncryptAs {
    type Err = ParseError;
    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s {
            "binary" => Ok(EncryptAs::Binary),
            "text" => Ok(EncryptAs::Text),
            _ => Err(ParseError(format!(
                "{}, expected one of {{binary|text}}", s))),
        }
    }
}

impl fmt::Display for EncryptAs {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            EncryptAs::Binary => f.write_str("binary"),
            EncryptAs::Text => f.write_str("text"),
        }
    }
}

/// The ASCII Armor Label.
///
/// This is used by [`SOP::armor`] to control the framing that is
/// emitted.  See [`sop armor`].
///
///   [`sop armor`]: https://www.ietf.org/archive/id/draft-dkg-openpgp-stateless-cli-08.html#name-armor-convert-binary-to-asc
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum ArmorLabel {
    Auto,
    Sig,
    Key,
    Cert,
    Message,
}

impl Default for ArmorLabel {
    fn default() -> Self {
        ArmorLabel::Auto
    }
}

impl std::str::FromStr for ArmorLabel {
    type Err = ParseError;
    fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
        match s {
            "auto" => Ok(ArmorLabel::Auto),
            "sig" => Ok(ArmorLabel::Sig),
            "key" => Ok(ArmorLabel::Key),
            "cert" => Ok(ArmorLabel::Cert),
            "message" => Ok(ArmorLabel::Message),
            _ => Err(ParseError(format!(
                "{:?}, expected one of \
                 {{auto|sig|key|cert|message}}", s))),
        }
    }
}

impl fmt::Display for ArmorLabel {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            ArmorLabel::Auto => f.write_str("auto"),
            ArmorLabel::Sig => f.write_str("sig"),
            ArmorLabel::Key => f.write_str("key"),
            ArmorLabel::Cert => f.write_str("cert"),
            ArmorLabel::Message => f.write_str("message"),
        }
    }
}

/// Indicates the cryptographic digest used when making a signature.
///
/// It is useful specifically when generating signed PGP/MIME objects,
/// which want a `micalg=` parameter for the `multipart/signed`
/// content type as described in section 5 of [RFC3156].
///
/// [RFC3156]: https://datatracker.ietf.org/doc/html/rfc3156
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub enum Micalg {
    /// Rivest et.al. message digest 5 (deprecated).
    MD5,
    /// NIST Secure Hash Algorithm (deprecated).
    SHA1,
    /// RIPEMD-160 (deprecated).
    RipeMD,
    /// 256-bit version of SHA2.
    SHA256,
    /// 384-bit version of SHA2.
    SHA384,
    /// 512-bit version of SHA2.
    SHA512,
    /// 224-bit version of SHA2.
    SHA224,
    /// Unknown hash algorithm.
    Unknown(String),
}

impl From<u8> for Micalg {
    fn from(o: u8) -> Self {
        match o {
            1 => Micalg::MD5,
            2 => Micalg::SHA1,
            3 => Micalg::RipeMD,
            8 => Micalg::SHA256,
            9 => Micalg::SHA384,
            10 => Micalg::SHA512,
            11 => Micalg::SHA224,
            u => Micalg::Unknown(format!("unknown-algo-{}", u)),
        }
    }
}

impl fmt::Display for Micalg {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("pgp-")?;
        match self {
            Micalg::MD5 => f.write_str("md5"),
            Micalg::SHA1 => f.write_str("sha1"),
            Micalg::RipeMD => f.write_str("ripemd160"),
            Micalg::SHA256 => f.write_str("sha256"),
            Micalg::SHA384 => f.write_str("sha384"),
            Micalg::SHA512 => f.write_str("sha512"),
            Micalg::SHA224 => f.write_str("sha224"),
            Micalg::Unknown(a) => f.write_str(&a.to_lowercase()),
        }
    }
}