chromium/components/os_crypt/sync/os_crypt_mocker.cc

// Copyright 2016 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/os_crypt/sync/os_crypt_mocker.h"

#include "build/build_config.h"
#include "components/os_crypt/sync/os_crypt.h"

#if defined(USE_LIBSECRET) || defined(USE_KWALLET)
#include "components/os_crypt/sync/os_crypt_mocker_linux.h"
#endif

// static
void OSCryptMocker::SetUp() {}

// static
std::string OSCryptMocker::GetRawEncryptionKey() {}

#if BUILDFLAG(IS_APPLE)
// static
void OSCryptMocker::SetBackendLocked(bool locked) {
  OSCrypt::UseLockedMockKeychainForTesting(locked);
}
#endif

#if BUILDFLAG(IS_WIN)
// static
void OSCryptMocker::SetLegacyEncryption(bool legacy) {
  OSCrypt::SetLegacyEncryptionForTesting(legacy);
}

void OSCryptMocker::ResetState() {
  OSCrypt::ResetStateForTesting();
}

#endif

// static
void OSCryptMocker::TearDown() {}