Home
last modified time | relevance | path

Searched refs:Decrypt (Results 1 – 25 of 28) sorted by relevance

12

/external/openssl/crypto/evp/
Devptests.txt63 # ECB-AES128.Encrypt and ECB-AES128.Decrypt
68 # ECB-AES192.Encrypt and ECB-AES192.Decrypt
73 # ECB-AES256.Encrypt and ECB-AES256.Decrypt
80 # CBC-AES128.Encrypt and CBC-AES128.Decrypt
85 # CBC-AES192.Encrypt and CBC-AES192.Decrypt
90 # CBC-AES256.Encrypt and CBC-AES256.Decrypt
103 # CFB128-AES128.Decrypt
113 # CFB128-AES192.Decrypt
123 # CFB128-AES256.Decrypt
135 # OFB-AES128.Decrypt
[all …]
/external/chromium/chrome/browser/sync/util/
Dnigori_unittest.cc66 TEST(NigoriTest, Decrypt) { in TEST() argument
75 EXPECT_TRUE(nigori.Decrypt(encrypted, &plaintext)); in TEST()
91 EXPECT_TRUE(nigori.Decrypt(encrypted, &decrypted)); in TEST()
109 EXPECT_TRUE(nigori.Decrypt(encrypted, &decrypted)); in TEST()
128 EXPECT_FALSE(nigori.Decrypt(encrypted, &decrypted)); in TEST()
156 EXPECT_TRUE(nigori2.Decrypt(ciphertext, &plaintext)); in TEST()
160 EXPECT_TRUE(nigori1.Decrypt(ciphertext, &plaintext)); in TEST()
Dcryptographer.cc64 bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted, in Decrypt() function in browser_sync::Cryptographer
80 if (!it->second->Decrypt(encrypted.blob(), &plaintext)) { in DecryptToString()
137 if (!Decrypt(encrypted, &bag)) { in SetKeys()
159 if (!nigori.Decrypt(pending_keys_->blob(), &plaintext)) in DecryptPendingKeys()
Dcryptographer_unittest.cc58 EXPECT_TRUE(cryptographer.Decrypt(encrypted, &decrypted)); in TEST()
134 EXPECT_TRUE(cryptographer.Decrypt(encrypted, &decrypted)); in TEST()
Dnigori.h57 bool Decrypt(const std::string& value, std::string* decrypted) const;
Dnigori.cc203 bool Nigori::Decrypt(const std::string& encrypted, std::string* value) const { in Decrypt() function in browser_sync::Nigori
242 if (!encryptor.Decrypt(ciphertext, value)) in Decrypt()
Dcryptographer.h75 bool Decrypt(const sync_pb::EncryptedData& encrypted,
/external/chromium/chrome/browser/importer/
Dfirefox_importer_unittest_utils.h42 string16 Decrypt(const std::string& crypt);
80 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { in Decrypt() function
81 return decryptor_.Decrypt(crypt); in Decrypt()
Dnss_decryptor.cc64 string16 NSSDecryptor::Decrypt(const std::string& crypt) const { in Decrypt() function in NSSDecryptor
208 form.username_value = Decrypt(lines[begin++]); in ParseSignons()
212 form.password_value = Decrypt(lines[begin++]); in ParseSignons()
291 form.username_value = Decrypt(s2.ColumnString(5)); in ReadAndParseSignons()
293 form.password_value = Decrypt(s2.ColumnString(6)); in ReadAndParseSignons()
Dfirefox_importer_unittest.cc38 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECBJ" in TEST()
42 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECN9" in TEST()
63 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECKa" in TEST()
67 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECLW" in TEST()
Dnss_decryptor_null.h27 string16 Decrypt(const std::string& crypt) const { return string16(); } in Decrypt() function
Dnss_decryptor_system_nss.h33 string16 Decrypt(const std::string& crypt) const;
Dfirefox_importer_unittest_utils_mac.cc198 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { in Decrypt() function in FFUnitTestDecryptorProxy
227 string16 unencrypted_str = decryptor_.Decrypt(crypt); in OnDecrypt()
Dnss_decryptor_mac.h127 string16 Decrypt(const std::string& crypt) const;
Dnss_decryptor_win.h127 std::wstring Decrypt(const std::string& crypt) const;
/external/chromium/crypto/
Dencryptor_unittest.cc33 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted)); in TEST()
109 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted)); in TEST()
138 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted)); in TEST()
164 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted)); in TEST()
231 EXPECT_FALSE(encryptor.Decrypt("", &decrypted)); in TEST()
Dencryptor.h39 bool Decrypt(const std::string& ciphertext, std::string* plaintext);
Dencryptor_mac.cc72 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
Dencryptor_openssl.cc76 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
Dencryptor_nss.cc87 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
Dencryptor_win.cc97 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
/external/chromium/chrome/browser/password_manager/
Dencryptor_linux.cc135 if (!encryptor.Decrypt(raw_ciphertext, plaintext)) in DecryptString()
Dencryptor_mac.mm139 if (!encryptor.Decrypt(raw_ciphertext, plaintext))
/external/openssl/crypto/des/
Ddes.pod125 Decrypt data that was encrypted with the B<-e> option.
129 Decrypt data that was encrypted with the B<-E> option.
/external/chromium/chrome/browser/sync/syncable/
Dnigori_util.cc109 if (!cryptographer->Decrypt(entry_specifics.encrypted(), in ProcessUnsyncedChangesForEncryption()

12