Home
last modified time | relevance | path

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

/ohos5.0/base/security/asset/services/crypto_manager/src/
H A Dcrypto.rs32 auth_token: *const HksBlob, in ExecCrypt()
89 …pub fn exec_crypt(&self, cipher: &Vec<u8>, aad: &Vec<u8>, auth_token: &Vec<u8>) -> Result<Vec<u8>>… in exec_crypt()
95 let auth_token = HksBlob { size: auth_token.len() as u32, data: auth_token.as_ptr() }; in exec_crypt() localVariable
105 &auth_token as *const HksBlob, in exec_crypt()
/ohos5.0/base/security/asset/services/core_service/src/operations/
H A Doperation_query.rs73 let auth_token = query.get_bytes_attr(&Tag::AuthToken)?; in exec_crypto() localVariable
80 let secret = crypto.exec_crypt(secret, &common::build_aad(db_data)?, auth_token)?; in exec_crypto()