• Home
  • Raw
  • Download

Lines Matching refs:Cryptographer

19 Cryptographer::Cryptographer() : default_nigori_(NULL) {  in Cryptographer()  function in browser_sync::Cryptographer
22 Cryptographer::~Cryptographer() {} in ~Cryptographer()
24 void Cryptographer::Bootstrap(const std::string& restored_bootstrap_token) { in Bootstrap()
35 bool Cryptographer::CanDecrypt(const sync_pb::EncryptedData& data) const { in CanDecrypt()
39 bool Cryptographer::CanDecryptUsingDefaultKey( in CanDecryptUsingDefaultKey()
44 bool Cryptographer::Encrypt(const ::google::protobuf::MessageLite& message, in Encrypt()
64 bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted, in Decrypt()
71 std::string Cryptographer::DecryptToString( in DecryptToString()
87 bool Cryptographer::GetKeys(sync_pb::EncryptedData* encrypted) const { in GetKeys()
107 bool Cryptographer::AddKey(const KeyParams& params) { in AddKey()
121 bool Cryptographer::AddKeyImpl(Nigori* initialized_nigori) { in AddKeyImpl()
133 bool Cryptographer::SetKeys(const sync_pb::EncryptedData& encrypted) { in SetKeys()
144 void Cryptographer::SetPendingKeys(const sync_pb::EncryptedData& encrypted) { in SetPendingKeys()
149 bool Cryptographer::DecryptPendingKeys(const KeyParams& params) { in DecryptPendingKeys()
172 bool Cryptographer::GetBootstrapToken(std::string* token) const { in GetBootstrapToken()
180 bool Cryptographer::PackBootstrapToken(const Nigori* nigori, in PackBootstrapToken()
212 Nigori* Cryptographer::UnpackBootstrapToken(const std::string& token) const { in UnpackBootstrapToken()
244 void Cryptographer::InstallKeys(const std::string& default_key_name, in InstallKeys()