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

  /external/chromium/chrome/browser/sync/util/
cryptographer.h 40 // CanDecrypt should be used to verify whether the Cryptographer can decrypt
43 class Cryptographer {
45 Cryptographer();
46 ~Cryptographer();
49 // Cryptographer instance into the ready state (is_ready will be true).
106 // Returns whether this Cryptographer is ready to encrypt and decrypt data.
113 // Cryptographer instance to bootstrap itself. Returns false if such a token
139 DISALLOW_COPY_AND_ASSIGN(Cryptographer);
cryptographer.cc 6 #include "chrome/browser/sync/util/cryptographer.h"
19 Cryptographer::Cryptographer() : default_nigori_(NULL) {
22 Cryptographer::~Cryptographer() {}
24 void Cryptographer::Bootstrap(const std::string& restored_bootstrap_token) {
35 bool Cryptographer::CanDecrypt(const sync_pb::EncryptedData& data) const {
39 bool Cryptographer::CanDecryptUsingDefaultKey(
44 bool Cryptographer::Encrypt(const ::google::protobuf::MessageLite& message,
64 bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted
    [all...]

Completed in 89 milliseconds