/external/openssl/crypto/evp/ |
D | evptests.txt | 63 # 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/ |
D | nigori_unittest.cc | 66 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()
|
D | cryptographer.cc | 64 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()
|
D | cryptographer_unittest.cc | 58 EXPECT_TRUE(cryptographer.Decrypt(encrypted, &decrypted)); in TEST() 134 EXPECT_TRUE(cryptographer.Decrypt(encrypted, &decrypted)); in TEST()
|
D | nigori.h | 57 bool Decrypt(const std::string& value, std::string* decrypted) const;
|
D | nigori.cc | 203 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()
|
D | cryptographer.h | 75 bool Decrypt(const sync_pb::EncryptedData& encrypted,
|
/external/chromium/chrome/browser/importer/ |
D | firefox_importer_unittest_utils.h | 42 string16 Decrypt(const std::string& crypt); 80 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { in Decrypt() function 81 return decryptor_.Decrypt(crypt); in Decrypt()
|
D | nss_decryptor.cc | 64 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()
|
D | firefox_importer_unittest.cc | 38 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()
|
D | nss_decryptor_null.h | 27 string16 Decrypt(const std::string& crypt) const { return string16(); } in Decrypt() function
|
D | nss_decryptor_system_nss.h | 33 string16 Decrypt(const std::string& crypt) const;
|
D | firefox_importer_unittest_utils_mac.cc | 198 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { in Decrypt() function in FFUnitTestDecryptorProxy 227 string16 unencrypted_str = decryptor_.Decrypt(crypt); in OnDecrypt()
|
D | nss_decryptor_mac.h | 127 string16 Decrypt(const std::string& crypt) const;
|
D | nss_decryptor_win.h | 127 std::wstring Decrypt(const std::string& crypt) const;
|
/external/chromium/crypto/ |
D | encryptor_unittest.cc | 33 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()
|
D | encryptor.h | 39 bool Decrypt(const std::string& ciphertext, std::string* plaintext);
|
D | encryptor_mac.cc | 72 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
|
D | encryptor_openssl.cc | 76 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
|
D | encryptor_nss.cc | 87 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
|
D | encryptor_win.cc | 97 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { in Decrypt() function in crypto::Encryptor
|
/external/chromium/chrome/browser/password_manager/ |
D | encryptor_linux.cc | 135 if (!encryptor.Decrypt(raw_ciphertext, plaintext)) in DecryptString()
|
D | encryptor_mac.mm | 139 if (!encryptor.Decrypt(raw_ciphertext, plaintext))
|
/external/openssl/crypto/des/ |
D | des.pod | 125 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/ |
D | nigori_util.cc | 109 if (!cryptographer->Decrypt(entry_specifics.encrypted(), in ProcessUnsyncedChangesForEncryption()
|