Home
last modified time | relevance | path

Searched defs:KeyId (Results 1 – 4 of 4) sorted by relevance

/base/security/asset/services/crypto_manager/src/
Dlib.rs37 struct KeyId { struct
43 impl KeyId { impl
Dhuks_wrapper.h39 struct KeyId { struct
45 int32_t GenerateKey(const struct KeyId *keyId, bool needAuth, bool requirePasswordSet); argument
Dcrypto.rs26 …fn EncryptData(keyId: *const KeyId, aad: *const HksBlob, in_data: *const HksBlob, out_data: *mut O… in EncryptData()
27 …fn DecryptData(keyId: *const KeyId, aad: *const HksBlob, in_data: *const HksBlob, out_data: *mut O… in DecryptData()
28 …fn InitKey(keyId: *const KeyId, valid_time: u32, challenge: *mut OutBlob, handle: *mut OutBlob) ->… in InitKey()
76 &key_id as *const KeyId, in init_key() constant
127 &key_id as *const KeyId, in encrypt() constant
154 &key_id as *const KeyId, in decrypt() constant
Dsecret_key.rs43 fn GenerateKey(keyId: *const KeyId, need_auth: bool, require_password_set: bool) -> i32; in GenerateKey()
46 fn RenameKeyAlias(keyId: *const KeyId, newKeyAlias: *const HksBlob) -> i32; in RenameKeyAlias()
156 unsafe { RenameKeyAlias(&key_id as *const KeyId, &prefixed_new_alias_blob as *const HksBlob) } in huks_rename_key_alias() constant
227 let ret = unsafe { IsKeyExist(&key_id as *const KeyId) }; in exists() constant
239 …let ret = unsafe { GenerateKey(&key_id as *const KeyId, self.need_user_auth(), self.require_passwo… in generate() constant
250 let ret = unsafe { DeleteKey(&key_id as *const KeyId) }; in delete() constant