HomeSort by relevance Sort by last modified time
    Searched defs:Decrypt (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium/chrome/browser/importer/
nss_decryptor_null.h 21 // A NULL wrapper for Firefox NSS decrypt component, for use in builds where
27 string16 Decrypt(const std::string& crypt) const { return string16(); }
firefox_importer_unittest_utils.h 42 string16 Decrypt(const std::string& crypt);
80 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
81 return decryptor_.Decrypt(crypt);
nss_decryptor.cc 64 string16 NSSDecryptor::Decrypt(const std::string& crypt) const {
70 // by a leading '~'. Otherwise, we should decrypt the text.
208 form.username_value = Decrypt(lines[begin++]);
212 form.password_value = Decrypt(lines[begin++]);
291 form.username_value = Decrypt(s2.ColumnString(5));
293 form.password_value = Decrypt(s2.ColumnString(6));
firefox_importer_unittest_utils_mac.cc 198 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
227 string16 unencrypted_str = decryptor_.Decrypt(crypt);
  /external/chromium/crypto/
encryptor_nss.cc 87 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_mac.cc 72 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_win.cc 97 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_openssl.cc 76 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_null.h 22 // A NULL wrapper for Firefox NSS decrypt component, for use in builds where
30 string16 Decrypt(const std::string& crypt) const { return string16(); }
firefox_importer_unittest_utils.h 46 string16 Decrypt(const std::string& crypt);
84 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
85 return decryptor_.Decrypt(crypt);
nss_decryptor.cc 64 string16 NSSDecryptor::Decrypt(const std::string& crypt) const {
70 // by a leading '~'. Otherwise, we should decrypt the text.
209 form.username_value = Decrypt(lines[begin++]);
213 form.password_value = Decrypt(lines[begin++]);
292 form.username_value = Decrypt(s2.ColumnString(5));
294 form.password_value = Decrypt(s2.ColumnString(6));
firefox_importer_unittest_utils_mac.cc 212 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
241 string16 unencrypted_str = decryptor_.Decrypt(crypt);
  /external/chromium_org/net/quic/crypto/
null_decrypter.cc 20 bool NullDecrypter::Decrypt(StringPiece /*nonce*/,
49 // It's worth duplicating |Decrypt|, above, in order to save a copy by using
aes_128_gcm_12_decrypter_openssl.cc 62 bool Aes128Gcm12Decrypter::Decrypt(StringPiece nonce,
134 if (!Decrypt(StringPiece(reinterpret_cast<char*>(nonce), sizeof(nonce)),
  /external/chromium_org/ppapi/c/private/
ppp_content_decryptor_private.h 117 void (*Decrypt)(PP_Instance instance,
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.h 45 Decrypt,
  /external/chromium_org/crypto/
encryptor_nss.cc 89 bool Encryptor::Decrypt(const base::StringPiece& ciphertext,
encryptor_openssl.cc 82 bool Encryptor::Decrypt(const base::StringPiece& ciphertext,
  /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))
cryptographer.cc 64 bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted,
75 NOTREACHED() << "Cannot decrypt message";
80 if (!it->second->Decrypt(encrypted.blob(), &plaintext)) {
137 if (!Decrypt(encrypted, &bag)) {
159 if (!nigori.Decrypt(pending_keys_->blob(), &plaintext))
  /external/chromium_org/content/renderer/media/crypto/
ppapi_decryptor.cc 129 // to decrypt the stream in the renderer process (for ClearKey support).
152 void PpapiDecryptor::Decrypt(
158 &PpapiDecryptor::Decrypt, weak_this_,
163 DVLOG(3) << "Decrypt() - stream_type: " << stream_type;
164 if (!plugin_cdm_delegate_->Decrypt(stream_type, encrypted, decrypt_cb))
  /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_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/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.

Completed in 425 milliseconds

1 2