Searched defs:plain_text (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/components/password_manager/core/browser/
H A Dlogin_database_mac.cc14 const base::string16& plain_text,
22 base::string16* plain_text) const {
23 *plain_text = base::string16();
13 EncryptedString( const base::string16& plain_text, std::string* cipher_text) const argument
H A Dlogin_database_posix.cc14 const base::string16& plain_text,
16 *cipher_text = base::UTF16ToUTF8(plain_text);
22 base::string16* plain_text) const {
23 *plain_text = base::UTF8ToUTF16(cipher_text);
13 EncryptedString( const base::string16& plain_text, std::string* cipher_text) const argument
H A Dlogin_database_win.cc13 const base::string16& plain_text,
15 if (OSCrypt::EncryptString16(plain_text, cipher_text))
22 base::string16* plain_text) const {
23 if (OSCrypt::DecryptString16(cipher_text, plain_text))
12 EncryptedString( const base::string16& plain_text, std::string* cipher_text) const argument
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_api.c324 ** plain_text - Pointer to data to be encrypted
325 ** plain_text[0] conatins the MSB
332 UINT8 *plain_text, UINT8 pt_len,
337 status = smp_encrypt_data(key, key_len, plain_text, pt_len, p_out);
331 SMP_Encrypt(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
H A Dsmp_keys.c100 UINT8 *plain_text, UINT8 pt_len,
128 ARRAY_TO_STREAM (p, plain_text, pt_len); /* byte 0 to byte 15 */
99 smp_encrypt_data(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
/external/chromium_org/content/child/webcrypto/test/
H A Daes_gcm_unittest.cc49 const std::vector<uint8_t>& plain_text,
57 Status status = Encrypt(algorithm, key, CryptoData(plain_text), &output);
88 std::vector<uint8_t>* plain_text) {
102 return Decrypt(algorithm, key, CryptoData(cipher_text_with_tag), plain_text);
168 GetBytesFromHexString(test, "plain_text");
203 std::vector<uint8_t> plain_text; local
211 &plain_text));
212 EXPECT_BYTES_EQ(test_plain_text, plain_text);
222 &plain_text));
230 &plain_text));
45 AesGcmEncrypt(const blink::WebCryptoKey& key, const std::vector<uint8_t>& iv, const std::vector<uint8_t>& additional_data, unsigned int tag_length_bits, const std::vector<uint8_t>& plain_text, std::vector<uint8_t>* cipher_text, std::vector<uint8_t>* authentication_tag) argument
82 AesGcmDecrypt(const blink::WebCryptoKey& key, const std::vector<uint8_t>& iv, const std::vector<uint8_t>& additional_data, unsigned int tag_length_bits, const std::vector<uint8_t>& cipher_text, const std::vector<uint8_t>& authentication_tag, std::vector<uint8_t>* plain_text) argument
[all...]
/external/chromium_org/content/renderer/
H A Dwebclipboard_impl.cc135 void WebClipboardImpl::writePlainText(const WebString& plain_text) { argument
137 scw.WriteText(plain_text);
142 const WebString& plain_text, bool write_smart_paste) {
145 scw.WriteText(plain_text);
140 writeHTML( const WebString& html_text, const WebURL& source_url, const WebString& plain_text, bool write_smart_paste) argument
/external/chromium_org/content/test/
H A Dmock_webclipboard_impl.cc141 void MockWebClipboardImpl::writePlainText(const blink::WebString& plain_text) { argument
144 m_plainText = plain_text;
/external/chromium_org/ui/base/clipboard/
H A Dclipboard_util_win.cc223 base::string16* plain_text) {
224 DCHECK(data_object && plain_text);
233 plain_text->assign(data.get());
243 plain_text->assign(base::UTF8ToWide(data.get()));
254 *plain_text = base::UTF8ToUTF16(url.spec());
222 GetPlainText(IDataObject* data_object, base::string16* plain_text) argument
/external/bluetooth/bluedroid/stack/hcic/
H A Dhciblecmds.c580 UINT8 *plain_text, UINT8 pt_len,
609 ARRAY_TO_STREAM (pp, plain_text, pt_len);
579 btsnd_hcic_ble_encrypt(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, void *p_cmd_cplt_cback) argument
/external/chromium_org/media/cdm/
H A Daes_decryptor_unittest.cc375 const std::vector<uint8>& plain_text,
406 EXPECT_EQ(plain_text, decrypted_text);
409 EXPECT_EQ(plain_text.size(), decrypted_text.size());
410 EXPECT_NE(plain_text, decrypted_text);
413 EXPECT_NE(plain_text.size(), decrypted_text.size());
374 DecryptAndExpect(const scoped_refptr<DecoderBuffer>& encrypted, const std::vector<uint8>& plain_text, DecryptExpectation result) argument
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_view_aura.cc394 base::string16 plain_text; local
395 data.GetString(&plain_text);
396 if (!plain_text.empty())
397 drop_data->text = base::NullableString16(plain_text, false);
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_win.cc222 base::string16 plain_text; local
223 return (ClipboardUtil::GetPlainText(source, &plain_text) &&
224 !plain_text.empty() && GURL(plain_text).is_valid());
230 base::string16 plain_text; local
231 if (ClipboardUtil::GetPlainText(source, &plain_text) &&
232 !plain_text.empty()) {
233 GURL gurl(plain_text);

Completed in 322 milliseconds