Compare commits

..

No commits in common. "f71c8682467a7a24a29c2b74738acfae2f167e49" and "7229a56eef1175f8d350ca5526babdbf72b429f6" have entirely different histories.

3 changed files with 56 additions and 851 deletions

View File

@ -90,4 +90,4 @@ optional = true
[features]
default = []
std = [ "rand", "hex-literal", "simple_logger" ]
std = [ "simple_logger", "rand", "hex-literal" ]

File diff suppressed because it is too large Load Diff

View File

@ -1231,10 +1231,7 @@ pub fn parse_asn1_der_general_name(bytes: &[u8]) -> IResult<&[u8], Asn1DerGenera
},
0x84 => {
let (_, name) = complete(
parse_asn1_der_name
)(name_value)?;
Asn1DerGeneralName::DirectoryName(name)
Asn1DerGeneralName::DirectoryName(name_value)
},
0xA5 => {