#ifdef UNSAFE_BUFFERS_BUILD
#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) { … }
}