Chromium Code Reviews| Index: components/autofill/core/browser/webdata/autofill_table_encryptor.h |
| diff --git a/components/autofill/core/browser/webdata/autofill_table_encryptor.h b/components/autofill/core/browser/webdata/autofill_table_encryptor.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..91a8652a59fad574a8998a77795fcf11bab2c77f |
| --- /dev/null |
| +++ b/components/autofill/core/browser/webdata/autofill_table_encryptor.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright (c) 2017 The Chromium Authors. All rights reserved. |
|
please use gerrit instead
2017/02/22 19:05:42
no "(c)" necessary
devarajn
2017/02/22 19:24:26
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_H_ |
| +#define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/strings/string16.h" |
| + |
| +namespace autofill { |
| +// Encryptor used by Autofill table. |
| +class AutofillTableEncryptor { |
| + public: |
| + virtual ~AutofillTableEncryptor() {} |
| + |
| + virtual bool EncryptString16(const base::string16& plaintext, |
| + std::string* ciphertext) const = 0; |
| + virtual bool DecryptString16(const std::string& ciphertext, |
| + base::string16* plaintext) const = 0; |
| +}; |
| + |
| +} // namespace autofill |
| + |
| +#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_TABLE_ENCRYPTOR_H_ |