Home
last modified time | relevance | path

Searched refs:DebugCertPathType (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/security/code_signature/services/key_enable/src/
H A Dcert_path_utils.rs70 pub enum DebugCertPathType { enum
85 impl DebugCertPathType { impl
88 "Platform" => Ok(DebugCertPathType::Platform as u32), in from_str()
89 "Authed" => Ok(DebugCertPathType::Authed as u32), in from_str()
90 "Developer" => Ok(DebugCertPathType::Developer as u32), in from_str()
91 "Block" => Ok(DebugCertPathType::Block as u32), in from_str()
92 "Debug" => Ok(DebugCertPathType::Debug as u32), in from_str()
93 "Restricted" => Ok(DebugCertPathType::Restricted as u32), in from_str()
255 "Dev" => DebugCertPathType::from_str(cert_type), in path_resolver()
408 } else if cert_path_type == DebugCertPathType::Restricted as u32 { in convert_cert_type()
[all …]
H A Dprofile_utils.rs20 DebugCertPathType, ReleaseCertPathType, TrustCertPath,
181 PROFILE_DEBUG_TYPE => DebugCertPathType::Developer as u32, in get_cert_details()
436 value if value == DebugCertPathType::Developer as u32 => { in create_bundle_path()