/ohos5.0/base/security/device_auth/frameworks/deviceauth_lite/source/auth_info/ |
H A D | remove_auth_info_client.c | 76 struct uint8_buff plain = { NULL, 0, 0 }; in build_remove_request_data() local 125 struct uint8_buff plain = { 0, 0, 0 }; in parse_remove_response_data() local
|
H A D | remove_auth_info.c | 78 struct uint8_buff plain = { 0, 0, 0 }; in parse_remove_request_data() local 101 struct uint8_buff plain = { in build_remove_response_data() local
|
H A D | auth_info.c | 75 int32_t encrypt_payload(const struct var_buffer *key, const struct uint8_buff *plain, in encrypt_payload() 94 const char *aad, struct uint8_buff *plain) in decrypt_payload()
|
H A D | exchange_auth_info_client.c | 99 struct uint8_buff plain = { 0, 0, 0 }; in parse_exchange_response_data() local 153 struct uint8_buff plain; in build_exchange_request() local
|
/ohos5.0/base/security/asset/test/unittest/module_test/src/ |
H A D | huks_wrapper_test.cpp | 107 uint8_t plain[6 + TAG_SIZE + NONCE_SIZE] = { 0 }; variable 132 uint8_t plain[6 + TAG_SIZE + NONCE_SIZE] = { 0 }; variable
|
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/ |
H A D | hks_sm4_cipher_test_common.cpp | 96 uint8_t plain[SM4_COMMON_SIZE] = {0}; in HksSm4CipherTestCaseOther() local 160 uint8_t plain[SM4_COMMON_SIZE] = {0}; in HksSm4CipherTestCaseGcm() local
|
H A D | hks_cross_test.cpp | 81 uint8_t plain[CROSS_COMMON_SIZE] = {0}; variable 124 uint8_t plain[CROSS_COMMON_SIZE] = {0}; variable 171 uint8_t plain[CROSS_COMMON_SIZE] = {0}; variable 219 uint8_t plain[CROSS_COMMON_SIZE] = {0}; variable
|
H A D | hks_change_storage_level_test.cpp | 298 uint8_t plain[AES_COMMON_SIZE] = { 0 }; variable
|
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/symmetric_alg_test/ |
H A D | hks_aes_cipher_test_common.cpp | 181 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseOther() local 237 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseGcm2() local 300 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseGcm3() local 378 uint8_t plain[AES_COMMON_SIZE] = {0}; in HksAesCipherTestCaseGcm4() local
|
/ohos5.0/base/security/huks/frameworks/crypto_lite/cipher/src/ |
H A D | cipher_rsa.c | 322 static int32_t RsaEncrypt(RsaKeyData *key, const RsaData *plain, RsaData *cipher) in RsaEncrypt() 385 …c int32_t RsaPkcs1Decrypt(mbedtls_rsa_context *rsa, size_t rsaLen, RsaData *cipher, RsaData *plain) in RsaPkcs1Decrypt() 440 static int32_t RsaDecrypt(RsaKeyData *key, RsaData *cipher, RsaData *plain) in RsaDecrypt()
|
/ohos5.0/base/web/webview/ohos_adapter/keystore_adapter/src/ |
H A D | keystore_adapter_impl.cpp | 195 uint8_t plain[AES_COMMON_SIZE] = {0}; in DecryptKey() local
|
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/ |
H A D | convert_utils_test.cpp | 373 auto plain = record->GetPlainText(); variable 400 auto plain = record->GetHtmlText(); variable 459 auto plain = record->GetPlainText(); variable
|
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/ |
H A D | ark_paste_data_record_adapter_impl.cpp | 35 std::shared_ptr<std::string>* plain = static_cast<std::shared_ptr<std::string>*>(plainText); in NewRecord() local
|
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/src/ |
H A D | lnn_huks_utils.c | 615 uint8_t *plain = (uint8_t *)SoftBusCalloc(inData->size); in LnnDecryptDataByHuks() local 691 uint8_t *plain = (uint8_t *)SoftBusCalloc(inData->size); in LnnCeDecryptDataByHuks() local
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/account/src/ |
H A D | account_delegate_normal_impl.cpp | 181 int64_t plain; in Sha256AccountId() local
|
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/asymmetric_alg_test/ |
H A D | hks_rsa_cipher_test_common.cpp | 137 uint8_t plain[Unittest::RsaCipher::RSA_COMMON_SIZE] = {0}; in HksRsaCipherTestCase() local
|
H A D | hks_sm2_cipher_test.cpp | 466 uint8_t plain[SM2_COMMON_SIZE] = {0}; in HksSm2CipherTestRun() local 671 uint8_t plain[SM2_COMMON_SIZE] = {0}; in HksSm2CipherTestRunByNdk() local
|
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/tcp_direct/ |
H A D | trans_tcp_direct_test.cpp | 678 const char *plain = "plain"; variable 864 const char *plain = "plain"; variable
|
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/tcp_direct/src/ |
H A D | client_trans_tcp_direct_message.c | 405 …uint32_t flag, int32_t seqNum, TcpDirectChannelInfo *channel, const char *plain, uint32_t plainLen) in TransTdcProcessDataByFlag() 445 char *plain = (char *)SoftBusCalloc(dataLen - OVERHEAD_LEN); in TransTdcProcessData() local
|
/ohos5.0/base/security/asset/services/crypto_manager/src/ |
H A D | crypto.rs | 145 let mut plain: Vec<u8> = vec![0; cipher.len() - TAG_SIZE - NONCE_SIZE]; in decrypt() localVariable
|
/ohos5.0/base/telephony/core_service/utils/common/src/ |
H A D | tel_aes_crypto_util.cpp | 278 uint8_t *plain = (uint8_t *)calloc(decryptDataPair.second, sizeof(uint8_t)); in AesCryptoDecryptInner() local
|
/ohos5.0/foundation/communication/dsoftbus/adapter/common/mbedtls/ |
H A D | softbus_adapter_crypto.c | 121 uint32_t cipherTextSize, unsigned char *plain, uint32_t plainLen) in MbedAesGcmDecrypt()
|
/ohos5.0/base/security/device_auth/frameworks/deviceauth_lite/source/key_agreement/ |
H A D | sts_client.c | 369 struct uint8_buff plain = {request_sign.signature, request_sign.length, request_sign.length}; in build_end_request_data() local
|
/ohos5.0/foundation/communication/dsoftbus/adapter/common/openssl/ |
H A D | softbus_adapter_crypto.c | 171 uint32_t cipherTextSize, unsigned char *plain, uint32_t plainLen) in SslAesGcmDecrypt()
|
/ohos5.0/base/web/webview/test/unittest/pasteboard_adapter/ |
H A D | pasteboard_client_adapter_test.cpp | 328 std::shared_ptr<std::string> plain = g_pasternull->GetPlainText(); variable
|