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

  /external/chromium/chrome/browser/password_manager/
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);
  /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);
  /external/chromium_org/sync/util/
encryptor.h 12 class Encryptor {
22 virtual ~Encryptor() {}
  /external/chromium/crypto/
encryptor_nss.cc 5 #include "crypto/encryptor.h"
16 Encryptor::Encryptor()
22 Encryptor::~Encryptor() {
25 bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) {
52 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
87 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
encryptor_mac.cc 5 #include "crypto/encryptor.h"
15 Encryptor::Encryptor()
20 Encryptor::~Encryptor() {
23 bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) {
40 bool Encryptor::Crypt(int /*CCOperation*/ op,
68 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
72 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
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) {
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.h 23 class Encryptor {
28 Encryptor();
29 virtual ~Encryptor();
31 // Initializes the encryptor using |key| and |iv|. Returns false if either the
  /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

Completed in 308 milliseconds