blob: ffaa1c344411a93f8b44dbf998b238a36bd397a6 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/password_manager/core/browser/login_database.h"
#include "components/os_crypt/os_crypt.h"
namespace password_manager {
// static
LoginDatabase::EncryptionResult LoginDatabase::EncryptedString(
const base::string16& plain_text,
std::string* cipher_text) {
return OSCrypt::EncryptString16(plain_text, cipher_text)
? ENCRYPTION_RESULT_SUCCESS
: ENCRYPTION_RESULT_SERVICE_FAILURE;
}
// static
LoginDatabase::EncryptionResult LoginDatabase::DecryptedString(
const std::string& cipher_text,
base::string16* plain_text) {
return OSCrypt::DecryptString16(cipher_text, plain_text)
? ENCRYPTION_RESULT_SUCCESS
: ENCRYPTION_RESULT_SERVICE_FAILURE;
}
} // namespace password_manager