Home
last modified time | relevance | path

Searched defs:plainText (Results 1 – 25 of 121) sorted by relevance

12345

/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/
H A Dhks_chipset_platform_decrypt_test.cpp540 std::vector<uint8_t> plainText(t.cipher.size()); variable
603 std::vector<uint8_t> plainText(t.cipher.size()); variable
627 std::vector<uint8_t> plainText(t.cipher.size()); variable
648 std::vector<uint8_t> plainText(t.cipher.size()); variable
675 std::vector<uint8_t> plainText(t.cipher.size()); variable
701 std::vector<uint8_t> plainText(t.cipher.size()); variable
727 std::vector<uint8_t> plainText(t.cipher.size()); variable
773 std::vector<uint8_t> plainText(t.cipher.size()); variable
797 std::vector<uint8_t> plainText(t.cipher.size()); variable
821 std::vector<uint8_t> plainText(t.cipher.size()); variable
[all …]
H A Dhks_sm4_cipher_test_common.cpp46 …t struct HksParamSet *decryptParamSet, const struct HksBlob *cipherText, struct HksBlob *plainText, in HksSm4CipherTestDecrypt()
97 struct HksBlob plainText = { SM4_COMMON_SIZE, plain }; in HksSm4CipherTestCaseOther() local
161 struct HksBlob plainText = { SM4_COMMON_SIZE, plain }; in HksSm4CipherTestCaseGcm() local
/ohos5.0/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/
H A Dplain_text_napi.cpp48 auto *plainText = new (std::nothrow) PlainTextNapi(); in New() local
59 auto *plainText = new (std::nothrow) PlainTextNapi(); in NewInstance() local
68 auto *plainText = static_cast<PlainTextNapi *>(data); in Destructor() local
85 auto plainText = GetPlainText(env, info, ctxt); in GetContent() local
107 auto plainText = static_cast<PlainTextNapi *>(ctxt->native); in SetContent() local
118 auto plainText = GetPlainText(env, info, ctxt); in GetAbstract() local
140 auto plainText = static_cast<PlainTextNapi *>(ctxt->native); in SetAbstract() local
/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dplain_text_test.cpp81 PlainText plainText; variable
96 PlainText plainText; variable
H A Dndk_data_conversion_test.cpp92 auto plainText = OH_UdsPlainText_Create(); variable
137 auto plainText = OH_UdsPlainText_Create(); variable
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/interface_inner_test/alg_module_test/src/
H A Dhks_rsa_common_mt.cpp65 HksBlob plainText = { in GenerateKeyTestCase() local
132 HksBlob plainText = { in EncryptLocalTestCase() local
179 HksBlob plainText = { in EncryptServiceTestCase() local
262 HksBlob plainText = { in DecryptLocalTestCase() local
323 HksBlob plainText = { in DecryptServiceTestCase() local
381 HksBlob plainText = { in SignLocalTestCase() local
440 HksBlob plainText = { .size =strlen(hexData), in SignServiceTestCase() local
507 HksBlob plainText = { in VerifyLocalTestCase() local
557 HksBlob plainText = { in VerifyServiceTestCase() local
H A Dhks_dsa_mt.cpp684 HksBlob plainText = { .size = (uint32_t)strlen(hexData), .data = (uint8_t *)hexData }; in GenerateKeyTestCase() local
747 HksBlob plainText = { .size = (uint32_t)strlen(hexData), .data = (uint8_t *)hexData }; in SignLocalTestCase() local
806 HksBlob plainText = { .size = (uint32_t)strlen(hexData), .data = (uint8_t *)hexData }; in SignServiceTestCase() local
871 … HksBlob plainText = { .size = (uint32_t)strlen(hexDataTest), .data = (uint8_t *)hexDataTest }; in VerifyLocalTestCase() local
904 HksBlob plainText = { .size = (uint32_t)strlen(hexData), .data = (uint8_t *)hexData }; in VerifyServiceTestCase() local
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dpaste_data_test.cpp298 std::string plainText = "hello"; variable
492 std::string plainText = "plain text"; variable
511 std::string plainText = "plain text"; variable
528 std::string plainText = "plain text"; variable
813 std::string plainText = "plain text"; variable
850 std::string plainText = "plain text"; variable
866 std::string plainText = "plain text"; variable
886 std::string plainText = "plain text"; variable
905 std::string plainText = "plain text"; variable
924 std::string plainText = "plain text"; variable
[all …]
H A Dpasteboard_client_test.cpp61 std::string plainText = "plain text"; variable
77 std::string plainText = "plain text"; variable
108 std::string plainText = "helloWorld"; variable
170 std::string plainText = "helloWorld"; variable
213 std::string plainText = "helloWorld"; variable
288 std::string plainText = "helloWorld"; variable
389 std::string plainText("r法塔赫已经,速tdghf!】qd rqdswww.comsski,.sjopwe" variable
/ohos5.0/base/security/huks/services/huks_standard/huks_engine/main/core/src/
H A Dhks_chipset_platform_decrypt.c82 static int32_t CheckText(const struct HksBlob *cipherText, const struct HksBlob *plainText) in CheckText()
138 const struct HksBlob *wrappedKey, struct HksBlob *plainText) in DoAesDecrypt()
189 static int32_t CheckInput(const struct HksParamSet *paramSet, struct HksBlob *plainText, in CheckInput()
217 enum HksChipsetPlatformDecryptScene scene, struct HksBlob *plainText) in HuksCoreChipsetPlatformDecrypt()
H A Dhks_core_service_key_chipset_platform_derive.c56 enum HksChipsetPlatformDecryptScene scene, struct HksBlob *plainText) in HksCoreChipsetPlatformDecrypt()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dopenssl_crypto.cpp28 bool OpensslCrypto::AESDecrypt(const KeyBlob &preKey, KeyContext &keyContext_, KeyBlob &plainText) in AESDecrypt()
80 bool OpensslCrypto::AESEncrypt(const KeyBlob &preKey, const KeyBlob &plainText, KeyContext &keyCont… in AESEncrypt()
/ohos5.0/base/security/crypto_framework/test/unittest/src/
H A Dcrypto_sm4_ecb_cipher_test.cpp393 uint8_t plainText[] = "this is test!"; variable
433 uint8_t plainText[] = "this is test!"; variable
473 uint8_t plainText[] = "this is test!"; variable
513 uint8_t plainText[] = "this is test!"; variable
576 uint8_t plainText[] = "this is test!"; variable
687 uint8_t plainText[] = "this is test!"; variable
H A Dsm4_common.cpp145 uint8_t plainText[] = "this is test!"; in Sm4Encrypt() local
188 uint8_t plainText[] = "this is test!"; in Sm4Decrypt() local
235 uint8_t plainText[] = "this is test!"; in Sm4NoUpdateEncrypt() local
265 uint8_t plainText[] = "this is test!"; in Sm4NoUpdateDecrypt() local
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/common/
H A Daes_gcm_helper.cpp132 ErrCode AesGcmHelper::Encrypt(const std::string &plainText, std::string &cipherText) in Encrypt()
152 ErrCode AesGcmHelper::Decrypt(std::string &plainText, const std::string &cipherText) in Decrypt()
172 bool AesGcmHelper::EncryptAesGcm(const std::string &plainText, std::string &cipherText, std::string… in EncryptAesGcm()
222 bool AesGcmHelper::DecryptAesGcm(std::string &plainText, const std::string &cipherText, std::string… in DecryptAesGcm()
/ohos5.0/foundation/distributeddatamgr/udmf/framework/ndkimpl/unittest/
H A Duds_test.cpp74 auto plainText = OH_UdsPlainText_Create(); variable
88 auto plainText = OH_UdsPlainText_Create(); variable
109 auto plainText = OH_UdsPlainText_Create(); variable
131 auto plainText = OH_UdsPlainText_Create(); variable
153 auto plainText = OH_UdsPlainText_Create(); variable
179 auto plainText = OH_UdsPlainText_Create(); variable
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/ndk/unittest/
H A Dpasteboard_capi_test.cpp156 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); in GetDataCallback() local
370 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
417 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
448 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
486 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
515 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
555 OH_UdsPlainText *plainText = OH_UdsPlainText_Create(); variable
581 OH_UdsPlainText* plainText = OH_UdsPlainText_Create(); variable
835 std::string plainText = "helloWorld"; variable
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/test/unittest/src/
H A Dpaste_service_test.cpp204 std::string plainText = "plain text"; variable
227 std::string plainText = "helloWorld"; variable
600 std::string plainText = "plain text"; variable
645 std::string plainText = "helloWorld"; variable
740 std::string plainText = "plain text"; variable
795 std::string plainText = "plain text"; variable
825 std::string plainText = "plain text"; variable
870 std::string plainText = "plain text"; variable
895 std::string plainText = "plain text"; variable
928 std::string plainText = "plain text"; variable
[all …]
/ohos5.0/foundation/communication/wifi/wifi/base/security_utils/src/
H A Dwifi_openssl_utils.cpp65 int WifiOpensslUtils::OpensslAesEncrypt(const uint8_t *plainText, int plainTextLen, in OpensslAesEncrypt()
126 struct AesCipherInfo *info, uint8_t *plainText, int *plainTextLen) in OpensslAesDecrypt()
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/pasteboard_adapter/setplaintext_fuzzer/
H A Dsetplaintext_fuzzer.cpp31 std::shared_ptr<std::string> plainText = std::make_shared<std::string>(text); in SetPlainTextFuzzTest() local
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/symmetric_alg_test/
H A Dhks_aes_cipher_test_common.cpp100 …t struct HksParamSet *decryptParamSet, const struct HksBlob *cipherText, struct HksBlob *plainText, in HksAesCipherTestDecrypt()
182 struct HksBlob plainText = { AES_COMMON_SIZE, plain }; in HksAesCipherTestCaseOther() local
238 struct HksBlob plainText = { AES_COMMON_SIZE, plain }; in HksAesCipherTestCaseGcm2() local
301 struct HksBlob plainText = { AES_COMMON_SIZE, plain }; in HksAesCipherTestCaseGcm3() local
379 struct HksBlob plainText = { AES_COMMON_SIZE, plain }; in HksAesCipherTestCaseGcm4() local
406 const struct HksBlob *inData, struct HksBlob *cipherText, struct HksBlob *plainText) in HksAesDecryptThreeStage()
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/pasteboard_adapter/getmimetype_fuzzer/
H A Dgetmimetype_fuzzer.cpp29 std::shared_ptr<std::string> plainText = std::make_shared<std::string>(text); in GetMimeTypeFuzzTest() local
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/pasteboard_adapter/seturi_fuzzer/
H A Dseturi_fuzzer.cpp29 std::shared_ptr<std::string> plainText = std::make_shared<std::string>(text); in SetUriFuzzTest() local
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_paste_data_record_adapter_wrapper.cpp32 …d::string& mimeType, std::shared_ptr<std::string> htmlText, std::shared_ptr<std::string> plainText) in NewRecord()
54 bool ArkPasteDataRecordAdapterWrapper::SetPlainText(std::shared_ptr<std::string> plainText) in SetPlainText()
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/entrance/clipboard/
H A DmultiType_record_impl.cpp22 void MultiTypeRecordImpl::SetPlainText(const std::string plainText) in SetPlainText()

12345