mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
Update NSS to 3.32.1-RTM
This commit is contained in:
parent
f29876f120
commit
c91ef9012b
512 changed files with 83203 additions and 16839 deletions
26
security/nss/gtests/freebl_gtest/dh_unittest.cc
Normal file
26
security/nss/gtests/freebl_gtest/dh_unittest.cc
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
#include "blapi.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
namespace nss_test {
|
||||
|
||||
class DHTest : public ::testing::Test {
|
||||
protected:
|
||||
void TestGenParamSuccess(int size) {
|
||||
DHParams *params;
|
||||
for (int i = 0; i < 10; i++) {
|
||||
EXPECT_EQ(SECSuccess, DH_GenParam(size, ¶ms));
|
||||
PORT_FreeArena(params->arena, PR_TRUE);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Test parameter generation for minimum and some common key sizes
|
||||
TEST_F(DHTest, DhGenParamSuccessTest16) { TestGenParamSuccess(16); }
|
||||
TEST_F(DHTest, DhGenParamSuccessTest224) { TestGenParamSuccess(224); }
|
||||
TEST_F(DHTest, DhGenParamSuccessTest256) { TestGenParamSuccess(256); }
|
||||
|
||||
} // nss_test
|
||||
Loading…
Add table
Add a link
Reference in a new issue