Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_proxy_userinfo.cpp128 std::string pass; in GetHttpProxyHostPass() local
132 resultSet->GetString(columnIndex, pass); in GetHttpProxyHostPass()
138 passData.append(pass.c_str(), pass.size()); in GetHttpProxyHostPass()
145 errno_t passErrCode = memset_s(pass.data(), pass.size(), 0, pass.size()); in GetHttpProxyHostPass()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dmock_wifi_hdi_wpa_ap_impl.cpp46 int __real_HdiSetApPasswd(const char *pass, int id);
47 int __wrap_HdiSetApPasswd(const char *pass, int id) in __wrap_HdiSetApPasswd() argument
50 return MockWifiHdiWpaApImpl::GetInstance().HdiSetApPasswd(pass, id); in __wrap_HdiSetApPasswd()
52 return __real_HdiSetApPasswd(pass, id); in __wrap_HdiSetApPasswd()
/ohos5.0/docs/en/application-dev/security/CryptoArchitectureKit/
H A Dcrypto-rsa-sign-sig-verify-pkcs1.md18 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-3) to pass in the data to be s…
20 …d in by a single **Sign.update** is not limited. You can determine how to pass in data based on th…
23 …- If a large amount of data is to be signed, call **Sign.update()** multiple times to [pass in dat…
35 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-5) to pass in the data to be v…
36 …in by a single **Verify.update** is not limited. You can determine how to pass in data based on th…
38 …- If a large amount of data is to be verified, call **Verify.update()** multiple times to [pass in…
55 …await signer.update(input1); // If the plaintext is short, you can use sign() to pass in the full …
63 …await verifier.update(input1); // If the plaintext is short, you can use verify() to pass in the f…
94 …signer.updateSync(input1); // If the plaintext is short, you can use sign() to pass in the full da…
102 …verifier.updateSync(input1); // If the plaintext is short, you can use verify() to pass in the ful…
H A Dcrypto-ecdsa-sign-sig-verify.md18 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-3) to pass in the data to be s…
19 …ssed in by a single **update()** is not limited. You can determine how to pass in data based on th…
31 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-5) to pass in the data to be v…
32 …ssed in by a single **update()** is not limited. You can determine how to pass in data based on th…
49 …await signer.update(input1); // If the plaintext is short, you can use sign() to pass in the full …
57 …await verifier.update(input1); // If the plaintext is short, you can use verify() to pass in the f…
88 …signer.updateSync(input1); // If the plaintext is short, you can use sign() to pass in the full da…
96 …verifier.updateSync(input1); // If the plaintext is short, you can use verify() to pass in the ful…
H A Dcrypto-sm2-sign-sig-verify-pkcs1.md18 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-3) to pass in the data to be s…
19 …in by a single **Sign.update()** is not limited. You can determine how to pass in data based on th…
31 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-5) to pass in the data to be v…
32 … by a single **Verify.update()** is not limited. You can determine how to pass in data based on th…
49 …await signer.update(input1); // If the plaintext is short, you can use sign() to pass in the full …
57 …await verifier.update(input1); // If the plaintext is short, you can use verify() to pass in the f…
88 …signer.updateSync(input1); // If the plaintext is short, you can use sign() to pass in the full da…
96 …verifier.updateSync(input1); // If the plaintext is short, you can use verify() to pass in the ful…
H A Dcrypto-sm4-sym-encrypt-decrypt-gcm.md18 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be e…
20 …in by a single **Cipher.update** is not limited. You can determine how to pass in data based on th…
23 …data is to be encrypted, you can call **Cipher.update** multiple times to pass in the data by segm…
26 …- If data has been passed in by **Cipher.update**, pass in **null** in the **data** parameter of *…
38 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be d…
82 …// In GCM mode, pass in null in Cipher.doFinal in encryption. Obtain the tag data and fill it in t…
91 …// In GCM mode, pass in null in Cipher.doFinal in decryption. Verify the tag data passed in Cipher…
160 …// In GCM mode, pass in null in Cipher.doFinal in encryption. Obtain the tag data and fill it in t…
169 …// In GCM mode, pass in null in Cipher.doFinal in decryption. Verify the tag data passed in Cipher…
H A Dcrypto-aes-sym-encrypt-decrypt-gcm.md18 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be e…
20 …in by a single **Cipher.update** is not limited. You can determine how to pass in data based on th…
23 …data is to be encrypted, you can call **Cipher.update** multiple times to pass in the data by segm…
26 …- If data has been passed in by **Cipher.update**, pass in **null** in the **data** parameter of *…
38 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be d…
82 …// In GCM mode, pass in null in Cipher.doFinal in encryption. Obtain the tag data and fill it in t…
91 …// In GCM mode, pass in null in Cipher.doFinal in decryption. Verify the tag data passed in Cipher…
160 …// In GCM mode, pass in null in Cipher.doFinal in encryption. Obtain the tag data and fill it in t…
169 …// In GCM mode, pass in null in Cipher.doFinal in decryption. Verify the tag data passed in Cipher…
H A Dcrypto-generate-message-digest.md11 During the MD operation, you can use **update()** to pass in all the data at a time or pass in data…
20 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-6) to pass in the full data. T…
36 …// If the data to be processed is short, use update() to pass in the full data at a time. The amou…
55 …// If the data to be processed is short, use update() to pass in the full data at a time. The amou…
68 …o-architecture-kit/js-apis-cryptoFramework.md#update-7) multiple times to pass in 20 bytes each ti…
H A Dcrypto-sm4-sym-encrypt-decrypt-ecb.md17 When ECB mode is used, pass in **null** in **params**.
19 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be e…
22 …data is to be encrypted, you can call **Cipher.update** multiple times to pass in the data by segm…
26 …- If data has been passed in by **Cipher.update**, pass in **null** in the **data** parameter of *…
33 …key** to **SymKey** (the key used for decryption). When ECB mode is used, pass in **null** in **pa…
35 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be d…
H A Dcrypto-3des-sym-encrypt-decrypt-ecb.md18 When ECB mode is used, pass in **null** in **params**.
20 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be e…
23 …data is to be encrypted, you can call **Cipher.update** multiple times to pass in the data by segm…
27 …- If data has been passed in by **Cipher.update**, pass in **null** in the **data** parameter of *…
34 …key** to **SymKey** (the key used for decryption). When ECB mode is used, pass in **null** in **pa…
36 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in the data to be d…
H A Dcrypto-compute-mac.md29 During the HMAC operation, you can use **update()** to pass in all the data at a time or pass in da…
43 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-8) to pass in the full data. T…
70 …// If the data to be processed is short, use update() to pass in the full data at a time. The data…
100 …// If the data to be processed is short, use update() to pass in the full data at a time. The data…
118 …o-architecture-kit/js-apis-cryptoFramework.md#update-9) multiple times to pass in 20 bytes each ti…
146 let updateLength = 20; // In this example, pass in 20 bytes each time.
182 let updateLength = 20; // In this example, pass in 20 bytes each time.
H A Dcrypto-rsa-sign-sig-verify-pkcs1-by-segment.md18 …o-architecture-kit/js-apis-cryptoFramework.md#update-3) multiple times to pass in the data to be s…
19 …in by a single **Sign.update()** is not limited. You can determine how to pass in data based on th…
31 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-5) to pass in the data to be v…
32 … by a single **Verify.update()** is not limited. You can determine how to pass in data based on th…
51 // Call update() multiple times to pass in data by segment.
66 // Call update() multiple times to pass in data by segment.
111 // Call update() multiple times to pass in data by segment.
126 // Call update() multiple times to pass in data by segment.
H A Dcrypto-generate-message-digest-ndk.md13 …D operation, you can use **OH_CryptoDigest_Update()** to pass in all the data at a time or pass in…
22 …-crypto-architecture-kit/_crypto_digest_api.md#oh_cryptodigest_update) to pass in the data for gen…
70 …cture-kit/_crypto_digest_api.md#oh_cryptodigest_update) multiple times to pass in 20 bytes each ti…
H A Dcrypto-encrypt-decrypt-by-segment.md3 …However, when the amount of data is greater than 2 MB, you are advised to pass in and encrypt/decr…
7 …ence/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update-1) to pass in and encrypt/decr…
9 …ch time (**updateLength** in the example) and call **update()** multiple times to pass in the data.
21 …nce/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#dofinal-1) to pass in and encrypt/decr…
H A Dcrypto-3des-sym-encrypt-decrypt-ecb-ndk.md25 When ECB mode is used, pass in **null** in **params**.
30 …encrypted, you can call **OH_CryptoSymCipher_Update()** multiple times to pass in the data by segm…
34 …- If data has been passed in by **OH_CryptoSymCipher_Update()**, pass in **null** in the **data** …
41 …cify the key for decryption (**OH_CryptoSymKey**). When ECB mode is used, pass in **null** in **pa…
H A Dcrypto-rsa-asym-encrypt-decrypt-pkcs1.md18 …No encryption parameter is required for asymmetric key pairs. Therefore, pass in **null** in **par…
20 …nce/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#dofinal-1) to pass in the plaintext an…
23 …ata is to be encrypted, you can call **Cipher.doFinal** multiple times to pass in the data by segm…
31 …*KeyPair.PriKey** (the key used for decryption). When PKCS1 mode is used, pass in **null** in **pa…
33 …nce/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#dofinal-1) to pass in the ciphertext a…
H A Dcrypto-sm2-asym-encrypt-decrypt.md18 …No encryption parameter is required for asymmetric key pairs. Therefore, pass in **null** in **par…
20 …nce/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#dofinal-1) to pass in the plaintext an…
23 …ata is to be encrypted, you can call **Cipher.doFinal** multiple times to pass in the data by segm…
31 …ryption). If SM2 is used, no decryption parameter is required. Therefore, pass in **null** in **pa…
33 …nce/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#dofinal-1) to pass in the ciphertext a…
H A Dcrypto-convert-compressed-or-uncompressed-ECC-pubkey-ndk.md6pass in the string parameter to set the format of the ECC public key to obtain. To obtain a compre…
H A Dcrypto-sm4-sym-encrypt-decrypt-ecb-ndk.md22 When ECB mode is used, pass in **null** in **params**.
27 …encrypted, you can call **OH_CryptoSymCipher_Update()** multiple times to pass in the data by segm…
31 …- If data has been passed in by **OH_CryptoSymCipher_Update()**, pass in **null** in the **data** …
40 …cify the key for decryption (**OH_CryptoSymKey**). When ECB mode is used, pass in **null** in **pa…
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/fuzztest/imagepngplugin_fuzzer/src/
H A Dimage_png_plugin_fuzz.cpp56 int pass = 0; in DoPrivateFun() local
57 pngDecoder->GetAllRows(pngPtr, row, rowNum, pass); in DoPrivateFun()
58 pngDecoder->GetInterlacedRows(pngPtr, row, rowNum, pass); in DoPrivateFun()
64 pngDecoder->SaveInterlacedRows(const_cast<png_bytep>(new uint8_t), rowNum, pass); in DoPrivateFun()
/ohos5.0/docs/en/application-dev/reference/apis-telephony-kit/
H A Djs-apis-observer.md106 >You can pass the callback of the **on** function if you want to cancel listening for a certain typ…
136 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
229 >You can pass the callback of the **on** function if you want to cancel listening for a certain typ…
261 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
359 >You can pass the callback of the **on** function if you want to cancel listening for a certain typ…
389 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
479 >You can pass the callback of the **on** function if you want to cancel listening for a certain typ…
509 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
635 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
755 // You can pass the callback of the on method to cancel listening for a certain type of callback. I…
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/png_test/
H A Dpng_decoder_test.cpp1022 int pass = 0; variable
1023 pngDecoder->SaveInterlacedRows(row, rowNum, pass);
1040 int pass = 0; variable
1059 int pass = 0; variable
1079 int pass = 0; variable
1280 int pass = 0; variable
1416 int pass = 0; variable
1661 int pass = 0; variable
1663 pass = 1;
1666 pass = 1;
[all …]
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.25/
H A Dchangelogs-window.md50 …(1) If **LANDSCAPE** is passed in before the change, pass in **LANDSCAPE_INVERTED** after the chan…
52 …(2) If **LANDSCAPE_INVERTED** is passed in before the change, pass in **LANDSCAPE** after the chan…
54 …(3) If **USER_ROTATION_LANDSCAPE** is passed in before the change, pass in **USER_ROTATION_LANDSCA…
56 …(4) If **USER_ROTATION_LANDSCAPE_INVERTED** is passed in before the change, pass in **USER_ROTATIO…
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/include/
H A Dpng_decoder.h79 static void GetAllRows(png_structp pngPtr, png_bytep row, png_uint_32 rowNum, int pass);
80 static void GetInterlacedRows(png_structp pngPtr, png_bytep row, png_uint_32 rowNum, int pass);
83 void SaveInterlacedRows(png_bytep row, png_uint_32 rowNum, int pass);
/ohos5.0/docs/en/application-dev/application-models/
H A Duiability-startup-adjust.md15 …n name verification is enabled. In this case, the target application must pass domain name verific…
48 …- If **appLinkingOnly** in **options** is set to **true**, the target application must pass domain…
89 … // Specify whether the matched abilities options must pass App Linking domain name verification.
116 …n name verification is enabled. In this case, the target application must pass domain name verific…
149 …- If **appLinkingOnly** in **options** is set to **true**, the target application must pass domain…
190 … // Specify whether the matched abilities options must pass App Linking domain name verification.

12345678910>>...18