chromium/components/os_crypt/sync/os_crypt_linux_unittest.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 <string>

#include "base/functional/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "components/os_crypt/sync/key_storage_linux.h"
#include "components/os_crypt/sync/os_crypt.h"
#include "components/os_crypt/sync/os_crypt_mocker_linux.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

std::unique_ptr<KeyStorageLinux> GetNullKeyStorage() {}

class OSCryptLinuxTest : public testing::Test {};

TEST_F(OSCryptLinuxTest, VerifyV0) {}

TEST_F(OSCryptLinuxTest, VerifyV10) {}

TEST_F(OSCryptLinuxTest, VerifyV11) {}

TEST_F(OSCryptLinuxTest, IsEncryptionAvailable) {}

TEST_F(OSCryptLinuxTest, SetRawEncryptionKey) {}

// Because of crbug.com/1195256, there might be data that is encrypted with an
// empty key. These should remain decryptable, even when a proper key is
// available.
TEST_F(OSCryptLinuxTest, DecryptWhenEncryptionKeyIsEmpty) {}

}  // namespace