#include "components/autofill/core/browser/webdata/system_encryptor.h"
#include "components/os_crypt/sync/os_crypt.h"
namespace autofill {
bool SystemEncryptor::EncryptString(const std::string& plaintext,
std::string* ciphertext) const { … }
bool SystemEncryptor::DecryptString(const std::string& ciphertext,
std::string* plaintext) const { … }
bool SystemEncryptor::EncryptString16(const std::u16string& plaintext,
std::string* ciphertext) const { … }
bool SystemEncryptor::DecryptString16(const std::string& ciphertext,
std::u16string* plaintext) const { … }
}