HomeSort by relevance Sort by last modified time
    Searched refs:Decrypt (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 59 case Decrypt:
142 case Decrypt:
143 platformCrypto->decrypt(algorithm, key->key(), result);
176 PassRefPtr<CryptoOperation> SubtleCrypto::decrypt(const Dictionary& rawAlgorithm, Key* key, ExceptionState& es) function in class:WebCore::SubtleCrypto
178 return createCryptoOperation(rawAlgorithm, key, Decrypt, 0, es);
  /external/chromium/crypto/
encryptor_unittest.cc 33 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
109 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
138 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
164 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
231 EXPECT_FALSE(encryptor.Decrypt("", &decrypted));
encryptor_nss.cc 87 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_openssl.cc 76 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_win.cc 97 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
  /external/chromium_org/crypto/
encryptor_unittest.cc 33 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
93 // Encryptor::Decrypt() will still return true. This is the case for NSS
98 EXPECT_FALSE(decryptor.Decrypt(ciphertext, &decypted));
106 EXPECT_TRUE(decryptor2.Decrypt(ciphertext, &decypted));
112 EXPECT_FALSE(decryptor3.Decrypt(ciphertext, &decypted));
210 EXPECT_TRUE(encryptor.Decrypt(encrypted, &decypted));
242 encryptor.Decrypt(ciphertext_str.substr(offset, len), &decypted));
301 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
310 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted));
426 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decypted))
    [all...]
encryptor_nss.cc 89 bool Encryptor::Decrypt(const base::StringPiece& ciphertext,
encryptor_openssl.cc 82 bool Encryptor::Decrypt(const base::StringPiece& ciphertext,
  /external/chromium_org/media/cdm/
aes_decryptor.cc 79 if (!encryptor.Decrypt(encrypted_text, &decrypted_text)) {
80 DVLOG(1) << "Could not decrypt data.";
104 // No need to decrypt if there is no encrypted data.
113 // copy all encrypted subsamples to a contiguous buffer, decrypt them, then
124 if (!encryptor.Decrypt(encrypted_text, &decrypted_text)) {
125 DVLOG(1) << "Could not decrypt data.";
239 void AesDecryptor::Decrypt(StreamType stream_type,
274 // Decrypt() calls the DecryptCB synchronously so there's nothing to cancel.
aes_decryptor_unittest.cc 299 decryptor_.Decrypt(Decryptor::kVideo, encrypted, decrypt_cb_);
312 decryptor_.Decrypt(Decryptor::kVideo, encrypted, decrypt_cb_);
325 decryptor_.Decrypt(Decryptor::kVideo, encrypted, decrypt_cb_);
333 decryptor_.Decrypt(Decryptor::kVideo, encrypted, decrypt_cb_);
409 decryptor_.Decrypt(Decryptor::kVideo, encrypted_data, decrypt_cb_);
  /external/chromium_org/media/filters/
video_frame_stream_unittest.cc 55 // Decryptor can only decrypt (not decrypt-and-decode) so that
59 EXPECT_CALL(*decryptor_, Decrypt(_, _, _))
60 .WillRepeatedly(Invoke(this, &VideoFrameStreamTest::Decrypt));
84 // Fake Decrypt() function used by DecryptingDemuxerStream. It does nothing
86 void Decrypt(Decryptor::StreamType stream_type,
  /external/chromium_org/ppapi/cpp/private/
content_decryptor_private.cc 99 void Decrypt(PP_Instance instance,
109 static_cast<ContentDecryptor_Private*>(object)->Decrypt(
190 &Decrypt,
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest.cc 38 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECBJ"
42 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECN9"
63 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECKa"
67 decryptor_proxy.Decrypt("MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECLW"
firefox_importer_unittest_utils_mac.cc 198 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
227 string16 unencrypted_str = decryptor_.Decrypt(crypt);
  /external/chromium_org/content/renderer/media/crypto/
ppapi_decryptor.h 55 virtual void Decrypt(StreamType stream_type,
  /external/chromium_org/media/cdm/ppapi/
clear_key_cdm.h 46 virtual cdm::Status Decrypt(const cdm::InputBuffer& encrypted_buffer,
  /external/chromium/chrome/browser/sync/util/
nigori.cc 203 bool Nigori::Decrypt(const std::string& encrypted, std::string* value) const {
242 if (!encryptor.Decrypt(ciphertext, value))
  /external/chromium_org/chrome/utility/importer/
firefox_importer_unittest_utils_mac.cc 212 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
241 string16 unencrypted_str = decryptor_.Decrypt(crypt);
  /external/chromium_org/sync/util/
nigori.cc 192 bool Nigori::Decrypt(const std::string& encrypted, std::string* value) const {
231 if (!encryptor.Decrypt(ciphertext, value))
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebCrypto.cpp 46 Decrypt,
137 void MockWebCrypto::decrypt(const WebKit::WebCryptoAlgorithm& algorithm, const WebKit::WebCryptoKey& key, WebKit::WebCryptoOperationResult& result) function in class:WebTestRunner::MockWebCrypto
139 result.initializationSucceeded(new MockCryptoOperation(algorithm, Decrypt, result));
  /external/chromium_org/ppapi/proxy/
ppp_content_decryptor_private_proxy.cc 164 void Decrypt(PP_Instance instance,
355 &Decrypt,
468 CallWhileUnlocked(ppp_decryptor_impl_->Decrypt,
  /external/chromium_org/content/renderer/pepper/
content_decryptor_delegate.h 58 bool Decrypt(media::Decryptor::StreamType stream_type,
108 // Cancels the pending decrypt-and-decode callback for |stream_type|.
  /external/chromium_org/media/base/
mock_filters.h 165 MOCK_METHOD3(Decrypt, void(StreamType stream_type,
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_decrypter_nss.cc 287 bool Aes128Gcm12Decrypter::Decrypt(StringPiece nonce,
299 // QuicDecrypter::Decrypt() specifies that |output| must be as long as
369 if (!Decrypt(StringPiece(reinterpret_cast<char*>(nonce), sizeof(nonce)),
  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 32 const char kUnableToDecrypt[] = "Unable to decrypt encrypted ONC";
56 scoped_ptr<base::DictionaryValue> Decrypt(const std::string& passphrase,
144 if (!decryptor.Decrypt(ciphertext, &plaintext)) {
365 // Check and see if this is an encrypted ONC file. If so, decrypt it.
370 toplevel_onc = Decrypt(passphrase, *toplevel_onc);
372 LOG(ERROR) << "Couldn't decrypt the ONC from "

Completed in 1053 milliseconds

1 23 4