Home
last modified time | relevance | path

Searched refs:TrustAnchorChoice (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/x509-cert/tests/
Dtrust_anchor_format.rs3 use x509_cert::anchor::{CertPolicies, TrustAnchorChoice};
14 let tac = TrustAnchorChoice::decode(&mut decoder).unwrap(); in decode_ta1()
21 TrustAnchorChoice::TaInfo(tai) => { in decode_ta1()
129 let tac = TrustAnchorChoice::decode(&mut decoder).unwrap(); in decode_ta2()
136 TrustAnchorChoice::TaInfo(tai) => { in decode_ta2()
232 let tac = TrustAnchorChoice::decode(&mut decoder).unwrap(); in decode_ta3()
239 TrustAnchorChoice::TaInfo(tai) => { in decode_ta3()
342 let tac = TrustAnchorChoice::decode(&mut decoder).unwrap(); in decode_ta4()
349 TrustAnchorChoice::TaInfo(tai) => { in decode_ta4()
/external/python/pyasn1-modules/pyasn1_modules/
Drfc5914.py101 class TrustAnchorChoice(univ.Choice): class
104 TrustAnchorChoice.componentType = namedtype.NamedTypes(
118 TrustAnchorList.componentType = TrustAnchorChoice()
Drfc5934.py42 TrustAnchorChoice = rfc5914.TrustAnchorChoice variable
211 TrustAnchorChoiceList.componentType = TrustAnchorChoice()
339 namedtype.NamedType('add', TrustAnchorChoice().subtype(
494 namedtype.NamedType('apexTA', TrustAnchorChoice())
/external/rust/crates/x509-cert/src/
Danchor.rs131 pub enum TrustAnchorChoice<'a> { enum