Searched defs:Decrypt (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_null.h30 base::string16 Decrypt(const std::string& crypt) const { function in class:NSSDecryptor
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 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));
H A Dfirefox_importer_unittest_utils_mac.cc213 base::string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) { function in class:FFUnitTestDecryptorProxy
253 base::string16 unencrypted_str = decryptor_.Decrypt(crypt);
/external/chromium_org/media/cast/common/
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/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/crypto/
H A Dencryptor_nss.cc89 bool Encryptor::Decrypt(const base::StringPiece& ciphertext, function in class:crypto::Encryptor
H A Dencryptor_openssl.cc81 bool Encryptor::Decrypt(const base::StringPiece& ciphertext, function in class:crypto::Encryptor
/external/chromium_org/net/quic/crypto/
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.cc22 bool NullDecrypter::Decrypt(StringPiece /*nonce*/, function in class:net::NullDecrypter
50 // It's worth duplicating |Decrypt|, above, in order to save a copy by using
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),
/external/chromium_org/content/child/webcrypto/
H A Dalgorithm_dispatch.cc34 return impl->Decrypt(algorithm, key, data, buffer);
85 Status Decrypt(const blink::WebCryptoAlgorithm& algorithm, function in namespace:content::webcrypto
H A Dalgorithm_implementation.cc24 Status AlgorithmImplementation::Decrypt( function in class:content::webcrypto::AlgorithmImplementation
/external/chromium_org/sync/util/
H A Dnigori.cc194 bool Nigori::Decrypt(const std::string& encrypted, std::string* value) const { function in class:syncer::Nigori
232 if (!encryptor.Decrypt(ciphertext, value))
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)) {
/external/chromium_org/content/renderer/media/crypto/
H A Dppapi_decryptor.cc311 void PpapiDecryptor::Decrypt( function in class:content::PpapiDecryptor
317 base::Bind(&PpapiDecryptor::Decrypt,
327 !CdmDelegate()->Decrypt(stream_type, encrypted, decrypt_cb)) {
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_wrapper.h75 virtual cdm::Status Decrypt(const cdm::InputBuffer& encrypted_buffer,
261 virtual cdm::Status Decrypt(const cdm::InputBuffer& encrypted_buffer,
263 return cdm_->Decrypt(encrypted_buffer, decrypted_buffer);
507 cdm::Status CdmWrapperImpl<cdm::ContentDecryptionModule_4>::Decrypt( function in class:media::CdmWrapperImpl
512 return cdm_->Decrypt(buffer, decrypted_buffer);
/external/chromium_org/media/filters/
H A Dvideo_frame_stream_unittest.cc92 EXPECT_CALL(*decryptor_, Decrypt(_, _, _))
93 .WillRepeatedly(Invoke(this, &VideoFrameStreamTest::Decrypt));
142 // Fake Decrypt() function used by DecryptingDemuxerStream. It does nothing
144 void Decrypt(Decryptor::StreamType stream_type, function in class:media::VideoFrameStreamTest
/external/chromium_org/ppapi/cpp/private/
H A Dcontent_decryptor_private.cc171 void Decrypt(PP_Instance instance, function in namespace:pp::__anon10005
181 static_cast<ContentDecryptor_Private*>(object)->Decrypt(
267 &Decrypt,
/external/chromium_org/ppapi/proxy/
H A Dppp_content_decryptor_private_proxy.cc286 void Decrypt(PP_Instance instance, function in namespace:ppapi::proxy::__anon10129
482 &Decrypt,
688 CallWhileUnlocked(ppp_decryptor_impl_->Decrypt,
/external/chromium_org/chromeos/network/onc/
H A Donc_utils.cc58 scoped_ptr<base::DictionaryValue> Decrypt(const std::string& passphrase, function in namespace:chromeos::onc
146 if (!decryptor.Decrypt(ciphertext, &plaintext)) {
376 toplevel_onc = Decrypt(passphrase, *toplevel_onc);
/external/chromium_org/media/cdm/
H A Daes_decryptor.cc162 if (!encryptor.Decrypt(encrypted_text, &decrypted_text)) {
212 if (!encryptor.Decrypt(encrypted_text, &decrypted_text)) {
407 void AesDecryptor::Decrypt(StreamType stream_type, function in class:media::AesDecryptor
441 // Decrypt() calls the DecryptCB synchronously so there's nothing to cancel.
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.cc458 // TODO(xhwang): Remove duplication of code in Decrypt(),
460 bool ContentDecryptorDelegate::Decrypt( function in class:content::ContentDecryptorDelegate
464 DVLOG(3) << "Decrypt() - stream_type: " << stream_type;
478 DVLOG(2) << "Decrypt() - request_id " << request_id;
502 plugin_decryption_interface_->Decrypt(pp_instance_, pp_resource, &block_info);
514 // The next Decrypt() call will need to allocate a new shared memory
521 // The next Decrypt() call will need to allocate a new shared memory
/external/chromium_org/media/cdm/ppapi/external_clear_key/
H A Dclear_key_cdm.cc428 cdm::Status ClearKeyCdm::Decrypt(const cdm::InputBuffer& encrypted_buffer, function in class:media::ClearKeyCdm
430 DVLOG(1) << "Decrypt()";
631 decryptor_.Decrypt(
727 // Delay LoadLoadableSession() to test the case where Decrypt*() calls are
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_encrypt.cpp938 void CPDF_CryptoHandler::Decrypt(FX_DWORD objnum, FX_DWORD gennum, CFX_ByteString& str) function in class:CPDF_CryptoHandler

Completed in 536 milliseconds

12