Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: google_apis/gcm/base/encryptor.h

Issue 261853012: Componentize GCM Part 1: create GCM component and move some files over (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove os_crypt dependency from google_apis/gcm Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SYNC_UTIL_ENCRYPTOR_H_ 5 #ifndef GOOGLE_APIS_GCM_ENCRYPTOR_H_
blundell 2014/05/07 09:19:02 Hmm, do we have two copies of this header in the c
jianli 2014/05/07 19:12:29 Yes. Since both sync and gcm needs some os_crypt f
6 #define SYNC_UTIL_ENCRYPTOR_H_ 6 #define GOOGLE_APIS_GCM_ENCRYPTOR_H_
7 7
8 #include <string> 8 #include <string>
9 #include "google_apis/gcm/base/gcm_export.h"
9 10
10 namespace syncer { 11 namespace gcm {
11 12
12 class Encryptor { 13 class GCM_EXPORT Encryptor {
13 public: 14 public:
14 // All methods below should be thread-safe. 15 // All methods below should be thread-safe.
15 virtual bool EncryptString(const std::string& plaintext, 16 virtual bool EncryptString(const std::string& plaintext,
16 std::string* ciphertext) = 0; 17 std::string* ciphertext) = 0;
17 18
18 virtual bool DecryptString(const std::string& ciphertext, 19 virtual bool DecryptString(const std::string& ciphertext,
19 std::string* plaintext) = 0; 20 std::string* plaintext) = 0;
20 21
21 protected:
22 virtual ~Encryptor() {} 22 virtual ~Encryptor() {}
23 }; 23 };
24 24
25 } // namespace syncer 25 } // namespace gcm
26 26
27 #endif // SYNC_UTIL_ENCRYPTOR_H_ 27 #endif // GOOGLE_APIS_GCM_ENCRYPTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698