chromium/crypto/nss_key_util_unittest.cc

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

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "crypto/nss_key_util.h"

#include <keyhi.h>
#include <pk11pub.h>
#include <stdint.h>

#include <vector>

#include "crypto/nss_util.h"
#include "crypto/scoped_nss_types.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace crypto {

class NSSKeyUtilTest : public testing::Test {};

TEST_F(NSSKeyUtilTest, GenerateRSAKeyPairNSS) {}

TEST_F(NSSKeyUtilTest, FindNSSKeyFromPublicKeyInfo) {}

TEST_F(NSSKeyUtilTest, FailedFindNSSKeyFromPublicKeyInfo) {}

}  // namespace crypto