/external/chromium/chrome/browser/password_manager/ |
encryptor_win.cc | 5 #include "chrome/browser/password_manager/encryptor.h" 13 bool Encryptor::EncryptString16(const string16& plaintext, 18 bool Encryptor::DecryptString16(const std::string& ciphertext, 28 bool Encryptor::EncryptString(const std::string& plaintext, 49 bool Encryptor::DecryptString(const std::string& ciphertext,
|
encryptor.h | 13 // The Encryptor class gives access to simple encryption and decryption of 16 class Encryptor { 43 // For unit testing purposes we instruct the Encryptor to use a mock Keychain 49 DISALLOW_IMPLICIT_CONSTRUCTORS(Encryptor);
|
encryptor_password_mac.h | 21 // Get the Encryptor password for this system. If no password exists
|
/external/chromium/crypto/ |
encryptor_openssl.cc | 5 #include "crypto/encryptor.h" 47 Encryptor::Encryptor() 52 Encryptor::~Encryptor() { 55 bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) { 72 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { 76 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { 80 bool Encryptor::Crypt(bool do_encrypt,
|
encryptor_win.cc | 5 #include "crypto/encryptor.h" 31 Encryptor::Encryptor() 37 Encryptor::~Encryptor() { 40 bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) { 46 // the Encryptor. See the Remarks section of the CryptEncrypt MSDN page. 80 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { 97 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
|
/external/chromium_org/crypto/ |
encryptor_nss.cc | 5 #include "crypto/encryptor.h" 18 inline CK_MECHANISM_TYPE GetMechanism(Encryptor::Mode mode) { 20 case Encryptor::CBC: 22 case Encryptor::CTR: 23 // AES-CTR encryption uses ECB encryptor as a building block since 35 Encryptor::Encryptor() 41 Encryptor::~Encryptor() { 44 bool Encryptor::Init(SymmetricKey* key [all...] |
encryptor_openssl.cc | 5 #include "crypto/encryptor.h" 47 Encryptor::Encryptor() 52 Encryptor::~Encryptor() { 55 bool Encryptor::Init(SymmetricKey* key, 74 bool Encryptor::Encrypt(const base::StringPiece& plaintext, 82 bool Encryptor::Decrypt(const base::StringPiece& ciphertext, 90 bool Encryptor::Crypt(bool do_encrypt, 139 bool Encryptor::CryptCTR(bool do_encrypt [all...] |
encryptor.h | 24 class CRYPTO_EXPORT Encryptor { 55 Encryptor(); 56 virtual ~Encryptor(); 58 // Initializes the encryptor using |key| and |iv|. Returns false if either the
|
/external/chromium/chrome/browser/sync/util/ |
nigori.cc | 20 #include "crypto/encryptor.h" 26 using crypto::Encryptor; 133 Encryptor encryptor; local 134 if (!encryptor.Init(encryption_key_.get(), Encryptor::CBC, 139 if (!encryptor.Encrypt(plaintext.str(), &ciphertext)) 175 Encryptor encryptor; local 176 if (!encryptor.Init(encryption_key_.get(), Encryptor::CBC, iv) [all...] |
user_settings_posix.cc | 10 #include "chrome/browser/password_manager/encryptor.h" 24 if (!Encryptor::EncryptString(long_lived_service_token, 57 if (!Encryptor::DecryptString(encrypted_service_token, service_token)) {
|
cryptographer_unittest.cc | 11 #include "chrome/browser/password_manager/encryptor.h" 147 Encryptor::UseMockKeychain(true);
|
/external/chromium_org/sync/util/ |
nigori.cc | 14 #include "crypto/encryptor.h" 21 using crypto::Encryptor; 128 Encryptor encryptor; local 129 if (!encryptor.Init(encryption_key_.get(), Encryptor::CBC, 134 if (!encryptor.Encrypt(plaintext.str(), &ciphertext)) 165 Encryptor encryptor; local 166 if (!encryptor.Init(encryption_key_.get(), Encryptor::CBC, iv) [all...] |
cryptographer.cc | 13 #include "sync/util/encryptor.h" 25 Cryptographer::Cryptographer(Encryptor* encryptor) 26 : encryptor_(encryptor) { 27 DCHECK(encryptor); 145 // Create the new Nigori and make it the default encryptor. 171 // Create the new Nigori and make it the default encryptor.
|
cryptographer.h | 25 class Encryptor; 52 // Does not take ownership of |encryptor|. 53 explicit Cryptographer(Encryptor* encryptor); 173 Encryptor* encryptor() const { return encryptor_; } function in class:syncer::Cryptographer 202 Encryptor* const encryptor_;
|
/external/chromium_org/components/webdata/encryptor/ |
encryptor.h | 12 // The Encryptor class gives access to simple encryption and decryption of 15 class Encryptor { 42 // For unit testing purposes we instruct the Encryptor to use a mock Keychain 48 DISALLOW_IMPLICIT_CONSTRUCTORS(Encryptor);
|
encryptor_password_mac.h | 22 // Get the Encryptor password for this system. If no password exists
|
/external/chromium/chrome/browser/webdata/ |
token_service_table.cc | 12 #include "chrome/browser/password_manager/encryptor.h" 55 bool encrypted = Encryptor::EncryptString(token, &encrypted_token); 83 Encryptor::DecryptString(encrypted_token, &decrypted_token);
|
/external/chromium_org/chrome/browser/signin/ |
local_auth_unittest.cc | 15 #include "components/webdata/encryptor/encryptor.h" 32 Encryptor::UseMockKeychain(true);
|
local_auth.cc | 18 #include "components/webdata/encryptor/encryptor.h" 65 const bool success = Encryptor::EncryptString(record, &encoded); 94 return Encryptor::DecryptString(unbase64, decoded);
|
/external/chromium_org/chrome/browser/webdata/ |
token_service_table.cc | 12 #include "components/webdata/encryptor/encryptor.h" 75 bool encrypted = Encryptor::EncryptString(token, &encrypted_token); 108 Encryptor::DecryptString(encrypted_token, &decrypted_token);
|
web_data_service_win.cc | 10 #include "components/webdata/encryptor/ie7_password_win.h"
|
/external/chromium_org/components/autofill/core/ |
DEPS | 8 "+components/webdata/encryptor",
|
/external/chromium/chrome/browser/autofill/ |
autofill_common_test.cc | 10 #include "chrome/browser/password_manager/encryptor.h" 80 Encryptor::UseMockKeychain(true);
|
/external/chromium_org/media/cast/audio_sender/ |
audio_sender.h | 21 class Encryptor; 96 scoped_ptr<crypto::Encryptor> encryptor_;
|
/external/chromium/net/socket/ |
dns_cert_provenance_checker.cc | 25 #include "crypto/encryptor.h" 309 crypto::Encryptor encryptor; local 310 bool r = encryptor.Init(symkey.get(), crypto::Encryptor::CBC, iv); 315 encryptor.Encrypt(plaintext, &ciphertext);
|