Searched refs:Decrypt (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/chrome/utility/importer/
H A Dfirefox_importer_unittest_utils.h48 base::string16 Decrypt(const std::string& crypt);
88 base::string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { function in class:FFUnitTestDecryptorProxy
89 return decryptor_.Decrypt(crypt);
H A Dfirefox_importer_unittest.cc42 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECKa"
46 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECLW"
50 EXPECT_EQ(base::string16(), decryptor_proxy.Decrypt(std::string()));
53 EXPECT_EQ(base::string16(), decryptor_proxy.Decrypt("Not! Valid! Base64!"));
H A Dnss_decryptor_null.h30 base::string16 Decrypt(const std::string& crypt) const { function in class:NSSDecryptor
H A Dnss_decryptor_system_nss.h34 base::string16 Decrypt(const std::string& crypt) const;
H A Dnss_decryptor.cc64 base::string16 NSSDecryptor::Decrypt(const std::string& crypt) const { function in class:NSSDecryptor
214 form.username_value = Decrypt(lines[begin++]);
218 form.password_value = Decrypt(lines[begin++]);
302 form.username_value = Decrypt(s2.ColumnString(5));
304 form.password_value = Decrypt(s2.ColumnString(6));
/external/chromium_org/sync/util/
H A Dnigori_unittest.cc66 TEST(SyncNigoriTest, Decrypt) {
75 EXPECT_TRUE(nigori.Decrypt(encrypted, &plaintext));
91 EXPECT_TRUE(nigori.Decrypt(encrypted, &decrypted));
109 EXPECT_TRUE(nigori.Decrypt(encrypted, &decrypted));
128 EXPECT_FALSE(nigori.Decrypt(encrypted, &decrypted));
156 EXPECT_TRUE(nigori2.Decrypt(ciphertext, &plaintext));
160 EXPECT_TRUE(nigori1.Decrypt(ciphertext, &plaintext));
H A Dcryptographer_unittest.cc76 EXPECT_TRUE(cryptographer_.Decrypt(encrypted, &decrypted));
105 EXPECT_TRUE(cryptographer_.Decrypt(encrypted2, &decrypted));
181 EXPECT_TRUE(cryptographer.Decrypt(encrypted, &decrypted));
234 EXPECT_TRUE(cryptographer_.Decrypt(encrypted_k1, &decrypted_k1));
235 EXPECT_TRUE(cryptographer_.Decrypt(encrypted_k2, &decrypted_k2));
246 EXPECT_TRUE(cryptographer_clone.Decrypt(encrypted_k1, &decrypted_k1_clone));
247 EXPECT_TRUE(cryptographer_clone.Decrypt(encrypted_k2, &decrypted_k2_clone));
260 EXPECT_TRUE(cryptographer_.Decrypt(encrypted_c, &decrypted_c));
H A Dcryptographer.cc119 bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted, function in class:syncer::Cryptographer
135 if (!it->second->Decrypt(encrypted.blob(), &plaintext)) {
209 Decrypt(*pending_keys_, &pending_bag);
224 if (!Decrypt(encrypted, &bag))
255 if (!nigori.Decrypt(pending_keys_->blob(), &plaintext))
335 if (!Decrypt(encrypted_bag, &bag)) {
H A Dnigori.h24 // for your secret (basically a map key), and |Encrypt| and |Decrypt| to store
60 bool Decrypt(const std::string& value, std::string* decrypted) const;
/external/chromium_org/media/cast/common/
H A Dtransport_encryption_handler.h35 bool Decrypt(uint32 frame_id,
H A Dtransport_encryption_handler.cc80 bool TransportEncryptionHandler::Decrypt(uint32 frame_id, function in class:media::cast::TransportEncryptionHandler
90 if (!encryptor_->Decrypt(ciphertext, plaintext)) {
/external/chromium_org/net/quic/crypto/
H A Dnull_decrypter.h27 virtual bool Decrypt(base::StringPiece nonce,
H A Dquic_decrypter.h42 // Decrypt authenticates |associated_data| and |ciphertext| and then decrypts
48 virtual bool Decrypt(base::StringPiece nonce,
H A Dchacha20_poly1305_decrypter_test.cc71 // DecryptWithNonce wraps the |Decrypt| method of |decrypter| to allow passing
80 if (!decrypter->Decrypt(nonce, associated_data, ciphertext,
88 TEST(ChaCha20Poly1305DecrypterTest, Decrypt) {
H A Daead_base_decrypter_openssl.cc79 bool AeadBaseDecrypter::Decrypt(StringPiece nonce, function in class:net::AeadBaseDecrypter
119 if (!Decrypt(StringPiece(reinterpret_cast<char*>(nonce), nonce_size),
H A Dnull_decrypter_test.cc16 TEST_F(NullDecrypterTest, Decrypt) {
H A Daead_base_decrypter_nss.cc50 bool AeadBaseDecrypter::Decrypt(StringPiece nonce, function in class:net::AeadBaseDecrypter
62 // QuicDecrypter::Decrypt() specifies that |output| must be as long as
133 if (!Decrypt(StringPiece(reinterpret_cast<char*>(nonce), nonce_size),
H A Daes_128_gcm_12_decrypter_test.cc253 // DecryptWithNonce wraps the |Decrypt| method of |decrypter| to allow passing
262 if (!decrypter->Decrypt(nonce, associated_data, ciphertext,
270 TEST(Aes128Gcm12DecrypterTest, Decrypt) {
/external/chromium_org/chromeos/network/onc/
H A Donc_utils_unittest.cc22 Decrypt("test0000", *encrypted_onc);
33 Decrypt("test0000", *encrypted_onc);
46 Decrypt("test0000", *encrypted_onc);
/external/chromium_org/content/child/webcrypto/openssl/
H A Daes_gcm_openssl.cc72 virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
H A Daes_kw_openssl.cc78 virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm,
/external/chromium_org/content/child/webcrypto/test/
H A Daes_ctr_unittest.cc81 Decrypt(CreateAesCtrAlgorithm(test_counter, counter_length_bits),
116 Decrypt(CreateAesCtrAlgorithm(bad_counter, 128),
151 Decrypt(CreateAesCtrAlgorithm(counter, bad_counter_length_bits),
207 Decrypt(CreateAesCtrAlgorithm(counter, kCounterLengthBits),
/external/chromium_org/media/base/
H A Ddecryptor.h78 // Decrypt() should not be called until any previous DecryptCB of the same
81 virtual void Decrypt(StreamType stream_type,
87 // Decrypt() should not be called again before the pending DecryptCB for the
/external/chromium_org/ppapi/c/private/
H A Dppp_content_decryptor_private.h195 void (*Decrypt)(PP_Instance instance, member in struct:PPP_ContentDecryptor_Private_0_12
/external/chromium_org/ppapi/api/private/
H A Dppp_content_decryptor_private.idl189 void Decrypt(

Completed in 281 milliseconds

1234