Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/der/tests/
Dderive.rs438 let algorithm_identifier = AlgorithmIdentifier::from_der(ALGORITHM_IDENTIFIER_DER).unwrap(); in decode() localVariable
440 assert_eq!(ID_EC_PUBLIC_KEY_OID, algorithm_identifier.algorithm); in decode()
443 ObjectIdentifier::try_from(algorithm_identifier.parameters.unwrap()).unwrap() in decode()
451 let algorithm_identifier = AlgorithmIdentifier { in encode() localVariable
458 algorithm_identifier.to_der().unwrap() in encode()
/aosp_15_r20/external/rust/android-crates-io/crates/spki/src/
Dtraits.rs118 fn algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned>; in algorithm_identifier() method
126 fn algorithm_identifier(&self) -> Result<AlgorithmIdentifierOwned> { in algorithm_identifier() function
/aosp_15_r20/external/cronet/third_party/boringssl/src/pki/
H A Dsignature_algorithm.cc333 der::Input algorithm_identifier) { in ParseSignatureAlgorithm() argument
336 if (!ParseAlgorithmIdentifier(algorithm_identifier, &oid, &params)) { in ParseSignatureAlgorithm()
H A Dsignature_algorithm.h77 der::Input algorithm_identifier);