1
1
//! `SignerInfo` data type [RFC 5652 § 5.3](https://datatracker.ietf.org/doc/html/rfc5652#section-5.3)
2
2
3
- use core:: cmp:: Ordering ;
4
-
5
3
use crate :: cms_version:: CmsVersion ;
6
4
use der:: {
7
5
asn1:: { OctetStringRef , SetOfVec } ,
@@ -37,7 +35,7 @@ type UnsignedAttributes<'a> = SetOfVec<Attribute>;
37
35
// issuerAndSerialNumber IssuerAndSerialNumber,
38
36
// subjectKeyIdentifier [0] SubjectKeyIdentifier }
39
37
/// ```
40
- #[ derive( Clone , Debug , PartialEq , Eq , Choice ) ]
38
+ #[ derive( Clone , Debug , PartialEq , Eq , Choice , ValueOrd ) ]
41
39
pub enum SignerIdentifier < ' a > {
42
40
/// issuer and serial number
43
41
IssuerAndSerialNumber ( IssuerAndSerialNumber ) ,
@@ -47,7 +45,7 @@ pub enum SignerIdentifier<'a> {
47
45
SubjectKeyIdentifier ( SubjectKeyIdentifier < ' a > ) ,
48
46
}
49
47
50
- #[ derive( Clone , Debug , Eq , PartialEq , Sequence ) ]
48
+ #[ derive( Clone , Debug , Eq , PartialEq , Sequence , ValueOrd ) ]
51
49
#[ allow( missing_docs) ]
52
50
pub struct IssuerAndSerialNumber {
53
51
pub name : Name ,
@@ -71,7 +69,7 @@ pub type SignerInfos<'a> = SetOfVec<SignerInfo<'a>>;
71
69
/// signature SignatureValue,
72
70
/// unsignedAttrs [1] IMPLICIT UnsignedAttributes OPTIONAL }
73
71
/// ```
74
- #[ derive( Clone , Debug , Eq , PartialEq , Sequence ) ]
72
+ #[ derive( Clone , Debug , Eq , PartialEq , Sequence , ValueOrd ) ]
75
73
pub struct SignerInfo < ' a > {
76
74
/// the syntax version number.
77
75
pub version : CmsVersion ,
@@ -96,10 +94,3 @@ pub struct SignerInfo<'a> {
96
94
#[ asn1( context_specific = "1" , tag_mode = "IMPLICIT" , optional = "true" ) ]
97
95
pub unsigned_attributes : Option < UnsignedAttributes < ' a > > ,
98
96
}
99
-
100
- // TODO: figure out what ordering makes sense - if any
101
- impl ValueOrd for SignerInfo < ' _ > {
102
- fn value_cmp ( & self , _other : & Self ) -> der:: Result < Ordering > {
103
- Ok ( Ordering :: Equal )
104
- }
105
- }
0 commit comments