chromium/components/autofill/core/browser/webdata/system_encryptor.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace autofill