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

  /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/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))

Completed in 352 milliseconds