This source file includes following definitions.
- EncryptedString
- DecryptedString
#include "components/password_manager/core/browser/login_database.h"
LoginDatabase::EncryptionResult LoginDatabase::EncryptedString(
const base::string16& plain_text,
std::string* cipher_text) const {
*cipher_text = std::string();
return ENCRYPTION_RESULT_SUCCESS;
}
LoginDatabase::EncryptionResult LoginDatabase::DecryptedString(
const std::string& cipher_text,
base::string16* plain_text) const {
*plain_text = base::string16();
return ENCRYPTION_RESULT_SUCCESS;
}