viadkim 0.2.0

Implementation of the DomainKeys Identified Mail (DKIM) specification
Documentation
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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
// viadkim – implementation of the DKIM specification
// Copyright © 2022–2024 David Bürgin <dbuergin@gluet.ch>
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.

//! DKIM signature.

use crate::{
    crypto::{HashAlgorithm, KeyType},
    header::FieldName,
    parse, quoted_printable,
    tag_list::{TagList, TagSpec},
    util::{Base64Debug, BytesDebug, CanonicalStr},
};
use std::{
    error::Error,
    fmt::{self, Display, Formatter},
    hash::{Hash, Hasher},
    str::{self, FromStr},
};

// Design note: According to RFC 6376, bare TLDs are not allowed (see ABNF for
// d= tag). But elsewhere it does seem to assume possibility of such domains,
// see §6.1.1: ‘signatures with "d=" values such as "com" and "co.uk" could be
// ignored.’ Therefore, we allow such values. (See also RFC 5321, section 2.3.5:
// ‘A domain name […] consists of one or more components, separated by dots if
// more than one appears. In the case of a top-level domain used by itself in an
// email address, a single string is used without any dots.’)

// Note: some of this was copied from viaspf.

/// An error indicating that a domain name could not be parsed.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub struct ParseDomainError;

impl Display for ParseDomainError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "could not parse domain name")
    }
}

impl Error for ParseDomainError {}

/// A domain name.
///
/// This type is used to wrap domain names as used in the *d=* and *i=* tags.
#[derive(Clone, Eq)]
pub struct DomainName(Box<str>);

impl DomainName {
    /// Creates a new domain name from the given string.
    ///
    /// Note that the string is validated and then encapsulated as-is.
    /// Equivalence comparison is case-insensitive; IDNA-equivalence comparisons
    /// are done in viadkim where necessary but are not part of the type’s own
    /// equivalence relations.
    ///
    /// # Errors
    ///
    /// If the given string is not a valid domain name, an error is returned.
    pub fn new(s: impl Into<Box<str>>) -> Result<Self, ParseDomainError> {
        let s = s.into();
        if is_valid_domain_name(&s) {
            Ok(Self(s))
        } else {
            Err(ParseDomainError)
        }
    }

    /// Compares this and the given domain for equivalence/subdomain
    /// relationship, in case-insensitive and IDNA-aware manner.
    pub fn eq_or_subdomain_of(&self, other: &Self) -> bool {
        if self == other {
            return true;
        }

        let name = self.to_ascii();
        let other = other.to_ascii();

        if name.len() >= other.len() {
            let (left, right) = name.split_at(name.len() - other.len());
            right.eq_ignore_ascii_case(&other) && (left.is_empty() || left.ends_with('.'))
        } else {
            false
        }
    }

    /// Produces the IDNA A-label (ASCII) form of this domain name.
    pub fn to_ascii(&self) -> String {
        // Wrapped name is guaranteed to be convertible to A-label form.
        idna::domain_to_ascii(&self.0).unwrap()
    }

    /// Produces the IDNA U-label (Unicode) form of this domain name.
    pub fn to_unicode(&self) -> String {
        // Wrapped name is guaranteed to be convertible to U-label form.
        idna::domain_to_unicode(&self.0).0
    }
}

impl Display for DomainName {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl fmt::Debug for DomainName {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl AsRef<str> for DomainName {
    fn as_ref(&self) -> &str {
        &self.0
    }
}

impl PartialEq for DomainName {
    fn eq(&self, other: &Self) -> bool {
        self.0.eq_ignore_ascii_case(&other.0)
    }
}

impl Hash for DomainName {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.0.to_ascii_lowercase().hash(state);
    }
}

impl FromStr for DomainName {
    type Err = ParseDomainError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if is_valid_domain_name(s) {
            Ok(Self(s.into()))
        } else {
            Err(ParseDomainError)
        }
    }
}

fn is_valid_domain_name(s: &str) -> bool {
    is_valid_domain_string(s, true)
}

/// A selector.
///
/// This type is used to wrap a sequence of labels as used in the *s=* tag.
#[derive(Clone, Eq)]
pub struct Selector(Box<str>);

impl Selector {
    /// Creates a new selector from the given string.
    ///
    /// Note that the string is validated and then encapsulated as-is.
    /// Equivalence comparison is case-insensitive; IDNA-equivalence comparisons
    /// are done in viadkim where necessary but are not part of the type’s own
    /// equivalence relations.
    ///
    /// # Errors
    ///
    /// If the given string is not a valid selector, an error is returned.
    pub fn new(s: impl Into<Box<str>>) -> Result<Self, ParseDomainError> {
        let s = s.into();
        if is_valid_selector(&s) {
            Ok(Self(s))
        } else {
            Err(ParseDomainError)
        }
    }

    /// Produces the IDNA A-label (ASCII) form of this selector.
    pub fn to_ascii(&self) -> String {
        // Wrapped name is guaranteed to be convertible to A-label form.
        idna::domain_to_ascii(&self.0).unwrap()
    }

    /// Produces the IDNA U-label (Unicode) form of this selector.
    pub fn to_unicode(&self) -> String {
        // Wrapped name is guaranteed to be convertible to U-label form.
        idna::domain_to_unicode(&self.0).0
    }
}

impl Display for Selector {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl fmt::Debug for Selector {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl AsRef<str> for Selector {
    fn as_ref(&self) -> &str {
        &self.0
    }
}

impl PartialEq for Selector {
    fn eq(&self, other: &Self) -> bool {
        self.0.eq_ignore_ascii_case(&other.0)
    }
}

impl Hash for Selector {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.0.to_ascii_lowercase().hash(state);
    }
}

impl FromStr for Selector {
    type Err = ParseDomainError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if is_valid_selector(s) {
            Ok(Self(s.into()))
        } else {
            Err(ParseDomainError)
        }
    }
}

fn is_valid_selector(s: &str) -> bool {
    is_valid_domain_string(s, false)
}

fn is_valid_domain_string(s: &str, check_tld: bool) -> bool {
    // For later IDNA processing, require that inputs can be converted without
    // error in both directions.
    match idna::domain_to_ascii(s) {
        Ok(ascii_s) => {
            is_valid_dns_name(&ascii_s, check_tld) && idna::domain_to_unicode(s).1.is_ok()
        }
        Err(_) => false,
    }
}

fn is_valid_dns_name(s: &str, check_tld: bool) -> bool {
    if !has_valid_domain_len(s) {
        return false;
    }

    let mut labels = s.split('.').rev();

    let final_label = labels.next().expect("failed to split string");

    // RFC 3696, section 2: ‘There is an additional rule that essentially
    // requires that top-level domain names not be all-numeric.’
    if !is_label(final_label) || (check_tld && final_label.chars().all(|c| c.is_ascii_digit())) {
        return false;
    }

    labels.all(is_label)
}

// Use a somewhat relaxed definition of DNS labels that also allows underscores,
// as seen in the wild.
fn is_label(s: &str) -> bool {
    debug_assert!(!s.contains('.'));
    has_valid_label_len(s)
        && !s.starts_with('-')
        && !s.ends_with('-')
        && s.chars()
            .all(|c: char| c.is_ascii_alphanumeric() || matches!(c, '-' | '_'))
}

// Note that these length checks are not definitive, as a later concatenation of
// selector, "_domainkey", and domain may still produce an invalid domain name.

fn has_valid_domain_len(s: &str) -> bool {
    matches!(s.len(), 1..=253)
}

fn has_valid_label_len(s: &str) -> bool {
    matches!(s.len(), 1..=63)
}

/// An error indicating that an identity could not be parsed.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub struct ParseIdentityError;

impl Display for ParseIdentityError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "could not parse identity")
    }
}

impl Error for ParseIdentityError {}

/// An agent or user identifier (AUID).
///
/// This type is used to wrap addresses as used in the *i=* tag.
#[derive(Clone, Eq, Hash, PartialEq)]
pub struct Identity {
    // Note: because PartialEq and Hash are derived, the local-part will be
    // compared/hashed literally and in case-sensitive fashion.

    /// The identity’s local-part, if any.
    pub local_part: Option<Box<str>>,

    /// The identity’s domain part.
    pub domain: DomainName,
}

impl Identity {
    /// Creates a new agent or user identifier (AUID) from the given string.
    ///
    /// # Errors
    ///
    /// If the given string is not a valid AUID, an error is returned.
    pub fn new(s: &str) -> Result<Self, ParseIdentityError> {
        let (local_part, domain) = s.rsplit_once('@').ok_or(ParseIdentityError)?;

        let local_part = if local_part.is_empty() {
            None
        } else {
            if !is_local_part(local_part) {
                return Err(ParseIdentityError);
            }
            Some(local_part)
        };

        let domain = domain.parse().map_err(|_| ParseIdentityError)?;

        Ok(Self {
            local_part: local_part.map(Into::into),
            domain,
        })
    }

    /// Creates a new agent or user identifier from the given domain name,
    /// without local-part.
    pub fn from_domain(domain: DomainName) -> Self {
        Self {
            local_part: None,
            domain,
        }
    }
}

// Note that local-part may include semicolon and space, which are here printed
// as-is. However, they cannot appear in a tag-list value and so must be encoded
// when formatted into a DKIM-Signature.
impl Display for Identity {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        if let Some(local_part) = &self.local_part {
            write!(f, "{local_part}")?;
        }
        write!(f, "@{}", self.domain)
    }
}

impl fmt::Debug for Identity {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl FromStr for Identity {
    type Err = ParseIdentityError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Self::new(s)
    }
}

// ‘local-part’ is defined in RFC 5321, §4.1.2. Modifications for
// internationalisation are in RFC 6531, §3.3.
fn is_local_part(s: &str) -> bool {
    // See RFC 5321, §4.5.3.1.1.
    if s.len() > 64 {
        return false;
    }

    if s.starts_with('"') {
        is_quoted_string(s)
    } else {
        is_dot_string(s)
    }
}

fn is_quoted_string(s: &str) -> bool {
    fn is_qtext_smtp(c: char) -> bool {
        c == ' ' || (c.is_ascii_graphic() && !matches!(c, '"' | '\\')) || !c.is_ascii()
    }

    if let Some(s) = s.strip_prefix('"').and_then(|s| s.strip_suffix('"')) {
        let mut quoted = false;
        for c in s.chars() {
            if quoted {
                if c == ' ' || c.is_ascii_graphic() {
                    quoted = false;
                } else {
                    return false;
                }
            } else if c == '\\' {
                quoted = true;
            } else if !is_qtext_smtp(c) {
                return false;
            }
        }
        !quoted
    } else {
        false
    }
}

fn is_dot_string(s: &str) -> bool {
    // See RFC 5322, §3.2.3, with the modifications in RFC 6531, §3.3.
    fn is_atext(c: char) -> bool {
        c.is_ascii_alphanumeric()
            || matches!(
                c,
                '!' | '#' | '$' | '%' | '&' | '\'' | '*' | '+' | '-' | '/' | '=' | '?' | '^' | '_'
                | '`' | '{' | '|' | '}' | '~'
            )
            || !c.is_ascii()
    }

    let mut dot = true;
    for c in s.chars() {
        if dot {
            if is_atext(c) {
                dot = false;
            } else {
                return false;
            }
        } else if c == '.' {
            dot = true;
        } else if !is_atext(c) {
            return false;
        }
    }
    !dot
}

/// An error indicating that an algorithm name could not be parsed.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub struct ParseAlgorithmError;

impl Display for ParseAlgorithmError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "could not parse algorithm name")
    }
}

impl Error for ParseAlgorithmError {}

/// A signing algorithm.
///
/// When **feature `pre-rfc8301`**  is enabled, this enum has a third variant
/// `RsaSha1` representing the *rsa-sha1* signing algorithm.
#[derive(Clone, Copy, Eq, Hash, PartialEq)]
pub enum SigningAlgorithm {
    /// The *rsa-sha256* signing algorithm.
    RsaSha256,
    /// The *ed25519-sha256* signing algorithm.
    Ed25519Sha256,
    #[cfg(feature = "pre-rfc8301")]
    /// The *rsa-sha1* signing algorithm.
    RsaSha1,
}

impl SigningAlgorithm {
    /// Assembles a signing algorithm from the constituent key type and hash
    /// algorithm, if possible.
    pub fn from_parts(key_type: KeyType, hash_alg: HashAlgorithm) -> Option<Self> {
        match (key_type, hash_alg) {
            (KeyType::Rsa, HashAlgorithm::Sha256) => Some(Self::RsaSha256),
            (KeyType::Ed25519, HashAlgorithm::Sha256) => Some(Self::Ed25519Sha256),
            #[cfg(feature = "pre-rfc8301")]
            (KeyType::Rsa, HashAlgorithm::Sha1) => Some(Self::RsaSha1),
            #[cfg(feature = "pre-rfc8301")]
            _ => None,
        }
    }

    /// Returns this signing algorithm’s key type component.
    pub fn key_type(self) -> KeyType {
        match self {
            Self::RsaSha256 => KeyType::Rsa,
            Self::Ed25519Sha256 => KeyType::Ed25519,
            #[cfg(feature = "pre-rfc8301")]
            Self::RsaSha1 => KeyType::Rsa,
        }
    }

    /// Returns this signing algorithm’s hash algorithm component.
    pub fn hash_algorithm(self) -> HashAlgorithm {
        match self {
            Self::RsaSha256 | Self::Ed25519Sha256 => HashAlgorithm::Sha256,
            #[cfg(feature = "pre-rfc8301")]
            Self::RsaSha1 => HashAlgorithm::Sha1,
        }
    }
}

impl CanonicalStr for SigningAlgorithm {
    fn canonical_str(&self) -> &'static str {
        match self {
            Self::RsaSha256 => "rsa-sha256",
            Self::Ed25519Sha256 => "ed25519-sha256",
            #[cfg(feature = "pre-rfc8301")]
            Self::RsaSha1 => "rsa-sha1",
        }
    }
}

impl Display for SigningAlgorithm {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.write_str(self.canonical_str())
    }
}

impl fmt::Debug for SigningAlgorithm {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl FromStr for SigningAlgorithm {
    type Err = ParseAlgorithmError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if s.eq_ignore_ascii_case("rsa-sha256") {
            Ok(Self::RsaSha256)
        } else if s.eq_ignore_ascii_case("ed25519-sha256") {
            Ok(Self::Ed25519Sha256)
        } else {
            #[cfg(feature = "pre-rfc8301")]
            if s.eq_ignore_ascii_case("rsa-sha1") {
                return Ok(Self::RsaSha1);
            }
            Err(ParseAlgorithmError)
        }
    }
}

impl From<SigningAlgorithm> for (KeyType, HashAlgorithm) {
    fn from(alg: SigningAlgorithm) -> Self {
        (alg.key_type(), alg.hash_algorithm())
    }
}

/// A canonicalization algorithm.
#[derive(Clone, Copy, Default, Eq, Hash, PartialEq)]
pub enum CanonicalizationAlgorithm {
    /// The *simple* canonicalization algorithm.
    #[default]
    Simple,
    /// The *relaxed* canonicalization algorithm.
    Relaxed,
}

impl CanonicalStr for CanonicalizationAlgorithm {
    fn canonical_str(&self) -> &'static str {
        match self {
            Self::Simple => "simple",
            Self::Relaxed => "relaxed",
        }
    }
}

impl Display for CanonicalizationAlgorithm {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.write_str(self.canonical_str())
    }
}

impl fmt::Debug for CanonicalizationAlgorithm {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl FromStr for CanonicalizationAlgorithm {
    type Err = ParseAlgorithmError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if s.eq_ignore_ascii_case("simple") {
            Ok(Self::Simple)
        } else if s.eq_ignore_ascii_case("relaxed") {
            Ok(Self::Relaxed)
        } else {
            Err(ParseAlgorithmError)
        }
    }
}

/// A pair of header/body canonicalization algorithms.
///
/// # Examples
///
/// ```
/// use viadkim::signature::{Canonicalization, CanonicalizationAlgorithm::*};
///
/// let c = Canonicalization::from((Relaxed, Simple));
///
/// assert_eq!(c.to_string(), "relaxed/simple");
/// ```
#[derive(Clone, Copy, Default, Eq, Hash, PartialEq)]
pub struct Canonicalization {
    /// The header canonicalization.
    pub header: CanonicalizationAlgorithm,
    /// The body canonicalization.
    pub body: CanonicalizationAlgorithm,
}

impl CanonicalStr for Canonicalization {
    fn canonical_str(&self) -> &'static str {
        use CanonicalizationAlgorithm::*;

        match (self.header, self.body) {
            (Simple, Simple) => "simple/simple",
            (Simple, Relaxed) => "simple/relaxed",
            (Relaxed, Simple) => "relaxed/simple",
            (Relaxed, Relaxed) => "relaxed/relaxed",
        }
    }
}

impl Display for Canonicalization {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.write_str(self.canonical_str())
    }
}

impl fmt::Debug for Canonicalization {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{self}")
    }
}

impl From<(CanonicalizationAlgorithm, CanonicalizationAlgorithm)> for Canonicalization {
    fn from((header, body): (CanonicalizationAlgorithm, CanonicalizationAlgorithm)) -> Self {
        Self { header, body }
    }
}

impl FromStr for Canonicalization {
    type Err = ParseAlgorithmError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let (header, body) = if let Some((header, body)) = s.split_once('/') {
            (header.parse()?, body.parse()?)
        } else {
            (s.parse()?, Default::default())
        };
        Ok(Self { header, body })
    }
}

/// The *DKIM-Signature* header name.
pub const DKIM_SIGNATURE_NAME: &str = "DKIM-Signature";

/// An error that occurs when parsing a DKIM signature for further processing.
///
/// The error comes with salvaged data from the failed parsing attempt that
/// could be reported in an *Authentication-Results* header. This data is in raw
/// (string) form because it might fail to parse into a concrete type.
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct DkimSignatureError {
    /// The error kind that caused this error.
    pub kind: DkimSignatureErrorKind,

    /// The string value of the *a=* tag, if available.
    pub algorithm_str: Option<Box<str>>,
    /// The string value of the *b=* tag, if available.
    pub signature_data_str: Option<Box<str>>,
    /// The string value of the *d=* tag, if available.
    pub domain_str: Option<Box<str>>,
    /// The string value of the *i=* tag, if available.
    pub identity_str: Option<Box<str>>,
    /// The string value of the *s=* tag, if available.
    pub selector_str: Option<Box<str>>,
}

impl DkimSignatureError {
    /// Creates a new DKIM signature error of the given kind, with no additional
    /// data attached.
    pub fn new(kind: DkimSignatureErrorKind) -> Self {
        Self {
            kind,
            algorithm_str: None,
            signature_data_str: None,
            domain_str: None,
            identity_str: None,
            selector_str: None,
        }
    }
}

impl Display for DkimSignatureError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        self.kind.fmt(f)
    }
}

impl Error for DkimSignatureError {}

/// The type of the error caused by an invalid DKIM signature.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum DkimSignatureErrorKind {
    /// Invalid UTF-8 in *DKIM-Signature* header.
    Utf8Encoding,
    /// The tag list is syntactically invalid.
    TagListFormat,
    /// Incompatible DKIM version.
    IncompatibleVersion,
    /// Use of a historic signature algorithm. (Note: only used when feature
    /// `pre-rfc8301` is not enabled.)
    HistoricAlgorithm,
    /// The algorithm in *a=* is not supported.
    UnsupportedAlgorithm,
    /// Invalid Base64 in DKIM signature.
    InvalidBase64,
    /// The *b=* tag is empty.
    EmptySignatureTag,
    /// The *bh=* tag is empty.
    EmptyBodyHashTag,
    /// The algorithm in *c=* is not supported.
    UnsupportedCanonicalization,
    /// The signing domain in *d=* is syntactically invalid.
    InvalidDomain,
    /// Invalid value in *h=*.
    InvalidSignedHeaderName,
    /// The *h=* tag is empty.
    EmptySignedHeadersTag,
    /// *From* is not included in *h=*.
    FromHeaderNotSigned,
    /// The AUID in *i=* is syntactically invalid.
    InvalidIdentity,
    /// Invalid value in *l=*.
    InvalidBodyLength,
    /// Invalid value in *q=*.
    InvalidQueryMethod,
    /// No supported query methods in *q=*.
    NoSupportedQueryMethods,
    /// The selector in *s=* is syntactically invalid.
    InvalidSelector,
    /// Invalid value in *t=*.
    InvalidTimestamp,
    /// Invalid value in *x=*.
    InvalidExpiration,
    /// A header field in *z=* is syntactically invalid.
    InvalidCopiedHeaderField,
    /// The *v=* tag is missing.
    MissingVersionTag,
    /// The *a=* tag is missing.
    MissingAlgorithmTag,
    /// The *b=* tag is missing.
    MissingSignatureTag,
    /// The *bh=* tag is missing.
    MissingBodyHashTag,
    /// The *d=* tag is missing.
    MissingDomainTag,
    /// The *h=* tag is missing.
    MissingSignedHeadersTag,
    /// The *s=* tag is missing.
    MissingSelectorTag,
    /// The *i=* domain is not equal to or a subdomain of the *d=* domain.
    DomainMismatch,
    /// The *x=* timestamp is not after the *i=* timestamp.
    ExpirationNotAfterTimestamp,
}

impl Display for DkimSignatureErrorKind {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match self {
            Self::Utf8Encoding => write!(f, "signature not UTF-8 encoded"),
            Self::TagListFormat => write!(f, "ill-formed tag list"),
            Self::IncompatibleVersion => write!(f, "incompatible version"),
            Self::HistoricAlgorithm => write!(f, "historic signature algorithm"),
            Self::UnsupportedAlgorithm => write!(f, "unsupported signature algorithm"),
            Self::InvalidBase64 => write!(f, "invalid Base64 string"),
            Self::EmptySignatureTag => write!(f, "b= tag empty"),
            Self::EmptyBodyHashTag => write!(f, "bh= tag empty"),
            Self::UnsupportedCanonicalization => write!(f, "unsupported canonicalization"),
            Self::InvalidDomain => write!(f, "invalid signing domain"),
            Self::InvalidSignedHeaderName => write!(f, "invalid signed header name"),
            Self::EmptySignedHeadersTag => write!(f, "h= tag empty"),
            Self::FromHeaderNotSigned => write!(f, "From header not signed"),
            Self::InvalidIdentity => write!(f, "invalid signing identity"),
            Self::InvalidBodyLength => write!(f, "invalid body length"),
            Self::InvalidQueryMethod => write!(f, "invalid query method"),
            Self::NoSupportedQueryMethods => write!(f, "no supported query methods"),
            Self::InvalidSelector => write!(f, "invalid selector"),
            Self::InvalidTimestamp => write!(f, "invalid timestamp"),
            Self::InvalidExpiration => write!(f, "invalid expiration"),
            Self::InvalidCopiedHeaderField => write!(f, "invalid header field in z= tag"),
            Self::MissingVersionTag => write!(f, "v= tag missing"),
            Self::MissingAlgorithmTag => write!(f, "a= tag missing"),
            Self::MissingSignatureTag => write!(f, "b= tag missing"),
            Self::MissingBodyHashTag => write!(f, "bh= tag missing"),
            Self::MissingDomainTag => write!(f, "d= tag missing"),
            Self::MissingSignedHeadersTag => write!(f, "h= tag missing"),
            Self::MissingSelectorTag => write!(f, "s= tag missing"),
            Self::DomainMismatch => write!(f, "domain mismatch"),
            Self::ExpirationNotAfterTimestamp => write!(f, "expiration not after timestamp"),
        }
    }
}

/// DKIM signature data as encoded in a *DKIM-Signature* header.
///
/// The *v=* tag (always 1) and the *q=* tag (always includes dns/txt) are not
/// included.
#[derive(Clone, Eq, Hash, PartialEq)]
pub struct DkimSignature {
    // The fields are strongly typed and have public visibility. This does allow
    // constructing an invalid `DkimSignature` (eg with empty signature, or
    // empty signed headers) but we consider this acceptable, because this is
    // mainly an ‘output’ data container.
    //
    // i= is `Option` because of §3.5: ‘the Signer might wish to assert that
    // although it is willing to go as far as signing for the domain, it is
    // unable or unwilling to commit to an individual user name within the
    // domain. It can do so by including the domain part but not the local-part
    // of the identity.’

    /// The *a=* tag.
    pub algorithm: SigningAlgorithm,
    /// The *b=* tag.
    pub signature_data: Box<[u8]>,
    /// The *bh=* tag.
    pub body_hash: Box<[u8]>,
    /// The *c=* tag.
    pub canonicalization: Canonicalization,
    /// The *d=* tag.
    pub domain: DomainName,
    /// The *h=* tag.
    pub signed_headers: Box<[FieldName]>,  // not empty, no names containing `;`
    /// The *i=* tag.
    pub identity: Option<Identity>,
    /// The *l=* tag.
    pub body_length: Option<u64>,
    /// The *s=* tag.
    pub selector: Selector,
    /// The *t=* tag.
    pub timestamp: Option<u64>,
    /// The *x=* tag.
    pub expiration: Option<u64>,
    /// The *z=* tag.
    pub copied_headers: Box<[(FieldName, Box<[u8]>)]>,  // names may contain `;`
    /// Additional, unrecognised tag name and value pairs. (For example, the RFC
    /// 6651 extension tag *r=y*.)
    pub ext_tags: Box<[(Box<str>, Box<str>)]>,
}

impl DkimSignature {
    /// Parses a DKIM signature from a tag list.
    ///
    /// # Errors
    ///
    /// If the tag list does not represent a valid DKIM signature, an error is
    /// returned.
    pub fn from_tag_list(tag_list: &TagList<'_>) -> Result<Self, DkimSignatureError> {
        Self::from_tag_list_internal(tag_list).map_err(|kind| {
            // The error path. Extract some data in raw form.

            let mut algorithm_str = None;
            let mut signature_data_str = None;
            let mut domain_str = None;
            let mut identity_str = None;
            let mut selector_str = None;

            for &TagSpec { name, value } in tag_list.as_ref() {
                match name {
                    "a" => algorithm_str = Some(value.into()),
                    "b" => signature_data_str = Some(value.into()),
                    "d" => domain_str = Some(value.into()),
                    "i" => identity_str = Some(value.into()),
                    "s" => selector_str = Some(value.into()),
                    _ => {}
                }
            }

            DkimSignatureError {
                kind,
                algorithm_str,
                signature_data_str,
                domain_str,
                identity_str,
                selector_str,
            }
        })
    }

    fn from_tag_list_internal(tag_list: &TagList<'_>) -> Result<Self, DkimSignatureErrorKind> {
        let mut version_seen = false;
        let mut algorithm = None;
        let mut signature_data = None;
        let mut body_hash = None;
        let mut canonicalization = None;
        let mut domain = None;
        let mut signed_headers = None;
        let mut identity = None;
        let mut body_length = None;
        let mut selector = None;
        let mut timestamp = None;
        let mut expiration = None;
        let mut copied_headers = None;
        let mut ext_tags = vec![];

        for &TagSpec { name, value } in tag_list.as_ref() {
            match name {
                "v" => {
                    if value != "1" {
                        return Err(DkimSignatureErrorKind::IncompatibleVersion);
                    }

                    version_seen = true;
                }
                "a" => {
                    let value = value.parse().map_err(|_| {
                        #[cfg(not(feature = "pre-rfc8301"))]
                        if value.eq_ignore_ascii_case("rsa-sha1") {
                            // Note: special-case "rsa-sha1" as recognised but
                            // no longer supported (RFC 8301).
                            return DkimSignatureErrorKind::HistoricAlgorithm;
                        }
                        DkimSignatureErrorKind::UnsupportedAlgorithm
                    })?;

                    algorithm = Some(value);
                }
                "b" => {
                    let value = parse::parse_base64_tvalue(value)
                        .map_err(|_| DkimSignatureErrorKind::InvalidBase64)?;

                    if value.is_empty() {
                        return Err(DkimSignatureErrorKind::EmptySignatureTag);
                    }

                    signature_data = Some(value.into());
                }
                "bh" => {
                    let value = parse::parse_base64_tvalue(value)
                        .map_err(|_| DkimSignatureErrorKind::InvalidBase64)?;

                    if value.is_empty() {
                        return Err(DkimSignatureErrorKind::EmptyBodyHashTag);
                    }

                    body_hash = Some(value.into());
                }
                "c" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::UnsupportedCanonicalization)?;

                    canonicalization = Some(value);
                }
                "d" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::InvalidDomain)?;

                    domain = Some(value);
                }
                "h" => {
                    if value.is_empty() {
                        return Err(DkimSignatureErrorKind::EmptySignedHeadersTag);
                    }

                    let mut sh = vec![];

                    for s in parse::parse_colon_separated_tvalue(value) {
                        let name = FieldName::new(s)
                            .map_err(|_| DkimSignatureErrorKind::InvalidSignedHeaderName)?;
                        sh.push(name);
                    }

                    if !sh.iter().any(|h| *h == "From") {
                        return Err(DkimSignatureErrorKind::FromHeaderNotSigned);
                    }

                    signed_headers = Some(sh.into());
                }
                "i" => {
                    let value = quoted_printable::decode(value)
                        .map_err(|_| DkimSignatureErrorKind::InvalidIdentity)?;

                    // This identifier is expected to contain UTF-8 only.
                    let value = String::from_utf8(value)
                        .map_err(|_| DkimSignatureErrorKind::InvalidIdentity)?;

                    let value = Identity::new(&value)
                        .map_err(|_| DkimSignatureErrorKind::InvalidIdentity)?;

                    identity = Some(value);
                }
                "l" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::InvalidBodyLength)?;

                    body_length = Some(value);
                }
                "q" => {
                    // Note that even though *q=* is specified as being plain
                    // text, the ABNF then allows qp-hdr-value (or rather
                    // ‘dkim-quoted-printable with colon encoded’, see erratum
                    // 4810). We skip this by simply checking for presence of
                    // `dns/txt`, the only generally supported value.

                    let mut dns_txt_seen = false;

                    for s in parse::parse_colon_separated_tvalue(value) {
                        if s.is_empty() {
                            return Err(DkimSignatureErrorKind::InvalidQueryMethod);
                        }
                        if s.eq_ignore_ascii_case("dns/txt") {
                            dns_txt_seen = true;
                        }
                    }

                    if !dns_txt_seen {
                        return Err(DkimSignatureErrorKind::NoSupportedQueryMethods);
                    }
                }
                "s" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::InvalidSelector)?;

                    selector = Some(value);
                }
                "t" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::InvalidTimestamp)?;

                    timestamp = Some(value);
                }
                "x" => {
                    let value = value.parse()
                        .map_err(|_| DkimSignatureErrorKind::InvalidExpiration)?;

                    expiration = Some(value);
                }
                "z" => {
                    let mut headers = vec![];

                    for piece in value.split('|') {
                        let header = parse_copied_header_field(piece)?;
                        headers.push(header);
                    }

                    copied_headers = Some(headers.into());
                }
                _ => {
                    ext_tags.push((name.into(), value.into()));
                }
            }
        }

        if !version_seen {
            return Err(DkimSignatureErrorKind::MissingVersionTag);
        }

        let algorithm = algorithm.ok_or(DkimSignatureErrorKind::MissingAlgorithmTag)?;
        let signature_data = signature_data.ok_or(DkimSignatureErrorKind::MissingSignatureTag)?;
        let body_hash = body_hash.ok_or(DkimSignatureErrorKind::MissingBodyHashTag)?;
        let domain = domain.ok_or(DkimSignatureErrorKind::MissingDomainTag)?;
        let signed_headers = signed_headers.ok_or(DkimSignatureErrorKind::MissingSignedHeadersTag)?;
        let selector = selector.ok_or(DkimSignatureErrorKind::MissingSelectorTag)?;

        if let Some(id) = &identity {
            if !id.domain.eq_or_subdomain_of(&domain) {
                return Err(DkimSignatureErrorKind::DomainMismatch);
            }
        }

        if let (Some(timestamp), Some(expiration)) = (timestamp, expiration) {
            if expiration <= timestamp {
                return Err(DkimSignatureErrorKind::ExpirationNotAfterTimestamp);
            }
        }

        let canonicalization = canonicalization.unwrap_or_default();
        let copied_headers = copied_headers.unwrap_or_default();
        let ext_tags = ext_tags.into();

        Ok(Self {
            algorithm,
            signature_data,
            body_hash,
            canonicalization,
            domain,
            signed_headers,
            identity,
            body_length,
            selector,
            timestamp,
            expiration,
            copied_headers,
            ext_tags,
        })
    }
}

fn parse_copied_header_field(
    value: &str,
) -> Result<(FieldName, Box<[u8]>), DkimSignatureErrorKind> {
    use DkimSignatureErrorKind::InvalidCopiedHeaderField;

    // This enforces the well-formedness requirement for header field names, but
    // not for the qp-encoded value, which can be anything (it should of course
    // conform to `FieldBody`, but since it is foreign data we cannot assume).

    let val = quoted_printable::decode(value).map_err(|_| InvalidCopiedHeaderField)?;

    let mut iter = val.splitn(2, |&c| c == b':');

    match (iter.next(), iter.next()) {
        (Some(name), Some(value)) => {
            let name = str::from_utf8(name).map_err(|_| InvalidCopiedHeaderField)?;
            let name = FieldName::new(name).map_err(|_| InvalidCopiedHeaderField)?;
            let value = value.into();
            Ok((name, value))
        }
        _ => Err(InvalidCopiedHeaderField),
    }
}

impl FromStr for DkimSignature {
    type Err = DkimSignatureError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let tag_list = TagList::from_str(s)
            .map_err(|_| DkimSignatureError::new(DkimSignatureErrorKind::TagListFormat))?;

        Self::from_tag_list(&tag_list)
    }
}

struct CopiedHeadersDebug<'a>(&'a [(FieldName, Box<[u8]>)]);

impl fmt::Debug for CopiedHeadersDebug<'_> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        let mut d = f.debug_list();
        for (name, value) in self.0 {
            d.entry(&(name, BytesDebug(value)));
        }
        d.finish()
    }
}

impl fmt::Debug for DkimSignature {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_struct("DkimSignature")
            .field("algorithm", &self.algorithm)
            .field("signature_data", &Base64Debug(&self.signature_data))
            .field("body_hash", &Base64Debug(&self.body_hash))
            .field("canonicalization", &self.canonicalization)
            .field("domain", &self.domain)
            .field("signed_headers", &self.signed_headers)
            .field("identity", &self.identity)
            .field("body_length", &self.body_length)
            .field("selector", &self.selector)
            .field("timestamp", &self.timestamp)
            .field("expiration", &self.expiration)
            .field("copied_headers", &CopiedHeadersDebug(&self.copied_headers))
            .field("ext_tags", &self.ext_tags)
            .finish()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{tag_list::TagList, util};
    use CanonicalizationAlgorithm::*;

    #[test]
    fn domain_name_ok() {
        assert!(DomainName::new("com").is_ok());
        assert!(DomainName::new("com123").is_ok());
        assert!(DomainName::new("example.com").is_ok());
        assert!(DomainName::new("_abc.example.com").is_ok());
        assert!(DomainName::new("中国").is_ok());
        assert!(DomainName::new("example.中国").is_ok());
        assert!(DomainName::new("☕.example.中国").is_ok());
        assert!(DomainName::new("xn--53h.example.xn--fiqs8s").is_ok());

        assert!(DomainName::new("").is_err());
        assert!(DomainName::new("-com").is_err());
        assert!(DomainName::new("c,m").is_err());
        assert!(DomainName::new("c;m").is_err());
        assert!(DomainName::new("123").is_err());
        assert!(DomainName::new("com.").is_err());
        assert!(DomainName::new("example..com").is_err());
        assert!(DomainName::new("example-.com").is_err());
        assert!(DomainName::new("example.123").is_err());
        assert!(DomainName::new("_$@.example.com").is_err());
        assert!(DomainName::new("example.com.").is_err());
        assert!(DomainName::new("ex mple.com").is_err());
        assert!(DomainName::new("xn---y.example.com").is_err());
    }

    #[test]
    fn domain_name_eq_or_subdomain() {
        fn domain(s: &str) -> DomainName {
            DomainName::new(s).unwrap()
        }

        assert!(domain("eXaMpLe.CoM").eq_or_subdomain_of(&domain("example.com")));
        assert!(domain("mAiL.eXaMpLe.CoM").eq_or_subdomain_of(&domain("example.com")));
        assert!(!domain("XaMpLe.CoM").eq_or_subdomain_of(&domain("example.com")));
        assert!(!domain("meXaMpLe.CoM").eq_or_subdomain_of(&domain("example.com")));

        assert!(domain("例子.xn--fiqs8s").eq_or_subdomain_of(&domain("xn--fsqu00a.中国")));
        assert!(domain("☕.例子.xn--fiqs8s").eq_or_subdomain_of(&domain("xn--fsqu00a.中国")));
        assert!(!domain("子.xn--fiqs8s").eq_or_subdomain_of(&domain("xn--fsqu00a.中国")));
        assert!(!domain("假例子.xn--fiqs8s").eq_or_subdomain_of(&domain("xn--fsqu00a.中国")));
    }

    #[test]
    fn selector_ok() {
        assert!(Selector::new("example").is_ok());
        assert!(Selector::new("x☕y").is_ok());
        assert!(Selector::new("_x☕y").is_ok());
        assert!(Selector::new("123").is_ok());
        assert!(Selector::new("☕.example").is_ok());
        assert!(Selector::new("_☕.example").is_ok());
        assert!(Selector::new("xn--53h.example").is_ok());
        assert!(Selector::new("xn--_-2yp.example").is_ok());

        assert!(Selector::new("").is_err());
        assert!(Selector::new(".").is_err());
        assert!(Selector::new("example.").is_err());
        assert!(Selector::new("xn---x.example").is_err());
    }

    #[test]
    fn identity_ok() {
        assert!(Identity::new("我@☕.example.中国").is_ok());
        assert!(Identity::new("\"\"@☕.example.中国").is_ok());

        assert!(Identity::new("me@@☕.example.中国").is_err());
    }

    #[test]
    fn identity_repr_ok() {
        let id1 = Identity::new("@example.org").unwrap();
        let id2 = Identity::new("Me@Example.Org").unwrap();
        let id3 = Identity::new("我.x#!@example.中国").unwrap();
        let id4 = Identity::new("\"x #$我\\\"\"@example.org").unwrap();

        assert_eq!(id1.to_string(), "@example.org");
        assert_eq!(id2.to_string(), "Me@Example.Org");
        assert_eq!(id3.to_string(), "我.x#!@example.中国");
        assert_eq!(id4.to_string(), "\"x #$我\\\"\"@example.org");

        assert_eq!(format!("{:?}", id1), "@example.org");
        assert_eq!(format!("{:?}", id2), "Me@Example.Org");
        assert_eq!(format!("{:?}", id3), "我.x#!@example.中国");
        assert_eq!(format!("{:?}", id4), "\"x #$我\\\"\"@example.org");
    }

    #[test]
    fn rfc6376_example_signature() {
        // See §3.5:
        let example = " v=1; a=rsa-sha256; d=example.net; s=brisbane;
   c=simple; q=dns/txt; i=@eng.example.net;
   t=1117574938; x=1118006938;
   h=from:to:subject:date;
   z=From:foo@eng.example.net|To:joe@example.com|
    Subject:demo=20run|Date:July=205,=202005=203:44:08=20PM=20-0700;
   bh=MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=;
   b=dzdVyOfAKCdLXdJOc9G2q8LoXSlEniSbav+yuU4zGeeruD00lszZVoG4ZHRNiYzR";
        let example = example.replace('\n', "\r\n");

        let q = TagList::from_str(&example).unwrap();

        let hdr = DkimSignature::from_tag_list(&q).unwrap();

        assert_eq!(
            hdr,
            DkimSignature {
                algorithm: SigningAlgorithm::RsaSha256,
                signature_data: util::decode_base64(
                    "dzdVyOfAKCdLXdJOc9G2q8LoXSlEniSbav+yuU4zGeeruD00lszZVoG4ZHRNiYzR"
                )
                .unwrap()
                .into(),
                body_hash: util::decode_base64("MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=")
                    .unwrap()
                    .into(),
                canonicalization: (Simple, Simple).into(),
                domain: DomainName::new("example.net").unwrap(),
                signed_headers: [
                    FieldName::new("from").unwrap(),
                    FieldName::new("to").unwrap(),
                    FieldName::new("subject").unwrap(),
                    FieldName::new("date").unwrap(),
                ]
                .into(),
                identity: Some(Identity::new("@eng.example.net").unwrap()),
                selector: Selector::new("brisbane").unwrap(),
                body_length: None,
                timestamp: Some(1117574938),
                expiration: Some(1118006938),
                copied_headers: [
                    (
                        FieldName::new("From").unwrap(),
                        Box::from(*b"foo@eng.example.net")
                    ),
                    (
                        FieldName::new("To").unwrap(),
                        Box::from(*b"joe@example.com")
                    ),
                    (
                        FieldName::new("Subject").unwrap(),
                        Box::from(*b"demo run")
                    ),
                    (
                        FieldName::new("Date").unwrap(),
                        Box::from(*b"July 5, 2005 3:44:08 PM -0700")
                    ),
                ]
                .into(),
                ext_tags: [].into(),
            }
        );
    }

    #[test]
    fn complicated_i18n_example_signature() {
        let example = " v = 1 ; a=rsa-sha256;d=example.net; s=brisbane;
   c=simple; q=dns/txt; i=中文=40en
    g.example =2E net;
   t=1117574938; x=1118006938;  y= curious
    value; zz=;
   h=from:to:subject:date;
   bh=MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=;
   b=dzdVyOfAKCdLXdJOc9G2q8LoXSlEniSbav+yuU4zGeeruD00lszZVoG4ZHRNiYzR";
        let example = example.replace('\n', "\r\n");

        let q = TagList::from_str(&example).unwrap();

        let hdr = DkimSignature::from_tag_list(&q).unwrap();

        assert_eq!(
            hdr,
            DkimSignature {
                algorithm: SigningAlgorithm::RsaSha256,
                signature_data: util::decode_base64(
                    "dzdVyOfAKCdLXdJOc9G2q8LoXSlEniSbav+yuU4zGeeruD00lszZVoG4ZHRNiYzR"
                )
                .unwrap()
                .into(),
                body_hash: util::decode_base64("MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=")
                    .unwrap()
                    .into(),
                canonicalization: (Simple, Simple).into(),
                domain: DomainName::new("example.net").unwrap(),
                signed_headers: [
                    FieldName::new("from").unwrap(),
                    FieldName::new("to").unwrap(),
                    FieldName::new("subject").unwrap(),
                    FieldName::new("date").unwrap(),
                ]
                .into(),
                identity: Some(Identity::new("中文@eng.example.net").unwrap()),
                selector: Selector::new("brisbane").unwrap(),
                body_length: None,
                timestamp: Some(1117574938),
                expiration: Some(1118006938),
                copied_headers: [].into(),
                ext_tags: [
                    (
                        "y".into(),
                        "curious\r\n    value".into(),
                    ),
                    (
                        "zz".into(),
                        "".into(),
                    ),
                ]
                .into(),
            }
        );
    }

    #[test]
    fn parse_copied_header_field_ok() {
        let example = " Date:=20July=205,=0D=0A=092005=20\r\n\t3:44:08=20PM=20-0700 ";

        let result = parse_copied_header_field(example);

        assert_eq!(
            result,
            Ok((
                FieldName::new("Date").unwrap(),
                Box::from(*b" July 5,\r\n\t2005 3:44:08 PM -0700"),
            ))
        );
    }
}