Home
last modified time | relevance | path

Searched refs:cert_chain (Results 1 – 6 of 6) sorted by relevance

/trusty/user/app/keymaster/
Dtrusty_aes_key.cpp140 CertificateChain* cert_chain) const { in GenerateKey()
156 hw_enforced, sw_enforced, cert_chain); in GenerateKey()
168 CertificateChain* cert_chain) const { in ImportKey()
187 output_key_blob, hw_enforced, sw_enforced, cert_chain); in ImportKey()
Dtrusty_aes_key.h41 CertificateChain* cert_chain) const override;
52 CertificateChain* cert_chain) const override;
Dsecure_storage_manager.cpp240 keymaster_cert_chain_t* cert_chain) { in ReadCertChainFromStorage() argument
243 cert_chain->entry_count = 0; in ReadCertChainFromStorage()
244 cert_chain->entries = nullptr; in ReadCertChainFromStorage()
252 cert_chain->entry_count = cert_chain_length; in ReadCertChainFromStorage()
257 cert_chain->entries = in ReadCertChainFromStorage()
259 if (cert_chain->entries == nullptr) { in ReadCertChainFromStorage()
262 memset(cert_chain->entries, 0, in ReadCertChainFromStorage()
267 cert_chain->entries[i].data_length = content_size; in ReadCertChainFromStorage()
273 cert_chain->entries[i].data = buffer; in ReadCertChainFromStorage()
Dsecure_storage_manager.h117 keymaster_cert_chain_t* cert_chain);
/trusty/user/app/keymint/secure_storage_manager/
Dsoftware.rs402 fn cert_chain(&self, key_type: SigningKeyType) -> Result<Vec<keymint::Certificate>, Error> { in cert_chain() method
/trusty/user/app/keymint/
Dsecure_storage_manager.rs462 fn cert_chain(&self, key_type: SigningKeyType) -> Result<Vec<keymint::Certificate>, Error> { in cert_chain() method
468 return fake.cert_chain(key_type); in cert_chain()