Get foreground tab on Android
[chromium-blink-merge.git] / sync / test / fake_encryptor.cc
blob2a1b58cac8d956843c4559e10f81821393bc4810
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sync/test/fake_encryptor.h"
7 #include "base/base64.h"
9 namespace syncer {
11 FakeEncryptor::~FakeEncryptor() {}
13 bool FakeEncryptor::EncryptString(const std::string& plaintext,
14 std::string* ciphertext) {
15 return base::Base64Encode(plaintext, ciphertext);
18 bool FakeEncryptor::DecryptString(const std::string& ciphertext,
19 std::string* plaintext) {
20 return base::Base64Decode(ciphertext, plaintext);
23 } // namespace syncer