HomeSort by relevance Sort by last modified time
    Searched refs:Encryptor (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/sync/util/
encryptor.h 12 class Encryptor {
22 virtual ~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_;
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...]
  /external/chromium_org/google_apis/gcm/base/
encryptor.h 13 class GCM_EXPORT Encryptor {
22 virtual ~Encryptor() {}
fake_encryptor.h 9 #include "google_apis/gcm/base/encryptor.h"
13 // Encryptor which simply base64-encodes the plaintext to get the
15 class FakeEncryptor : public Encryptor {
  /external/chromium_org/crypto/
encryptor.cc 5 #include "crypto/encryptor.h"
14 Encryptor::Counter::Counter(const base::StringPiece& counter) {
20 Encryptor::Counter::~Counter() {
23 bool Encryptor::Counter::Increment() {
38 void Encryptor::Counter::Write(void* buf) {
43 size_t Encryptor::Counter::GetLengthInBytes() const {
48 // Partial Encryptor Implementation.
50 bool Encryptor::SetCounter(const base::StringPiece& counter) {
60 bool Encryptor::GenerateCounterMask(size_t plaintext_len,
84 void Encryptor::MaskMessage(const void* plaintext
    [all...]
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 25 class CRYPTO_EXPORT Encryptor {
56 Encryptor();
57 virtual ~Encryptor();
59 // Initializes the encryptor using |key| and |iv|. Returns false if either the
encryptor_unittest.cc 5 #include "crypto/encryptor.h"
20 crypto::Encryptor encryptor; local
24 EXPECT_TRUE(encryptor.Init(key.get(), crypto::Encryptor::CBC, iv));
28 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
33 EXPECT_TRUE(encryptor.Decrypt(ciphertext, &decrypted));
64 crypto::Encryptor encryptor; local
68 EXPECT_TRUE(encryptor.Init(key.get(), crypto::Encryptor::CBC, iv))
193 crypto::Encryptor encryptor; local
225 crypto::Encryptor encryptor; local
290 crypto::Encryptor encryptor; local
411 crypto::Encryptor encryptor; local
444 crypto::Encryptor encryptor; local
470 crypto::Encryptor encryptor; local
495 crypto::Encryptor encryptor; local
509 crypto::Encryptor encryptor; local
523 crypto::Encryptor encryptor; local
542 crypto::Encryptor encryptor; local
    [all...]
  /external/chromium_org/media/cast/transport/utility/
transport_encryption_handler.h 17 class Encryptor;
47 scoped_ptr<crypto::Encryptor> encryptor_;
transport_encryption_handler.cc 8 #include "crypto/encryptor.h"
28 encryptor_.reset(new crypto::Encryptor());
29 encryptor_->Init(key_.get(), crypto::Encryptor::CTR, std::string());
  /external/chromium_org/components/gcm_driver/
system_encryptor.h 9 #include "google_apis/gcm/base/encryptor.h"
13 // Encryptor that uses the Chrome password manager's encryptor.
14 class SystemEncryptor : public Encryptor {
gcm_client.h 32 class Encryptor;
221 scoped_ptr<Encryptor> encryptor,
fake_gcm_client.h 45 scoped_ptr<Encryptor> encryptor,
  /external/chromium_org/components/sync_driver/
system_encryptor.h 9 #include "sync/util/encryptor.h"
13 // Encryptor that uses the Chrome password manager's encryptor.
14 class SystemEncryptor : public syncer::Encryptor {
  /external/chromium_org/sync/test/
fake_encryptor.h 9 #include "sync/util/encryptor.h"
13 // Encryptor which simply base64-encodes the plaintext to get the
15 class FakeEncryptor : public Encryptor {
  /external/chromium_org/components/os_crypt/
os_crypt_posix.cc 10 #include "crypto/encryptor.h"
89 crypto::Encryptor encryptor; local
90 if (!encryptor.Init(encryption_key.get(), crypto::Encryptor::CBC, iv))
93 if (!encryptor.Encrypt(plaintext, ciphertext))
131 crypto::Encryptor encryptor; local
132 if (!encryptor.Init(encryption_key.get(), crypto::Encryptor::CBC, iv)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
token_encryptor.cc 14 #include "crypto/encryptor.h"
78 crypto::Encryptor encryptor; local
79 if (!encryptor.Init(key, crypto::Encryptor::CTR, std::string())) {
80 LOG(WARNING) << "Failed to initialize Encryptor.";
85 CHECK(encryptor.SetCounter(nonce));
86 if (!encryptor.Encrypt(token, &encoded_token)) {
109 crypto::Encryptor encryptor; local
    [all...]
  /external/chromium_org/sync/internal_api/
sync_encryption_handler_impl.h 24 class Encryptor;
51 Encryptor* encryptor,
129 Vault(Encryptor* encryptor, ModelTypeSet encrypted_types);
sync_backup_manager.h 38 Encryptor* encryptor,
sync_rollback_manager.h 38 Encryptor* encryptor,
  /external/chromium_org/google_apis/gcm/engine/
gcm_store_impl.h 21 class Encryptor;
30 scoped_ptr<Encryptor> encryptor);
  /external/chromium_org/sync/syncable/
directory_unittest.h 90 Encryptor* encryptor();
  /external/chromium_org/sync/internal_api/public/
sync_manager.h 42 class Encryptor;
257 Encryptor* encryptor,

Completed in 230 milliseconds

1 2