Open
Description
Support for parsing RELATIVE-OID tag (0x0d
) is missing. For example, the following test results in 'Result::unwrap()
on an Err
value: "unknown/unsupported ASN.1 DER tag: 0x0d"`'.
#[cfg(test)]
mod tests {
use std::str::FromStr;
use x509_verify::x509_cert::name::RdnSequence;
#[test]
fn test_relative_oid() {
let rdn = "1.3.6.1.4.1.44363.47.1=#0d03e81701";
RdnSequence::from_str(rdn).map_err(|e| e.to_string()).unwrap();
}
}
The error message comes from
Line 323 in 50685d9
Metadata
Metadata
Assignees
Labels
No labels