mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
Update NSS to 3.35-RTM
This commit is contained in:
parent
23de11e5cd
commit
608f9fca02
388 changed files with 39075 additions and 20752 deletions
|
|
@ -61,7 +61,11 @@ class TlsConnectTestBase : public ::testing::Test {
|
|||
// Reset, and update the certificate names on both peers
|
||||
void Reset(const std::string& server_name,
|
||||
const std::string& client_name = "client");
|
||||
// Replace the server.
|
||||
void MakeNewServer();
|
||||
|
||||
// Set up
|
||||
void StartConnect();
|
||||
// Run the handshake.
|
||||
void Handshake();
|
||||
// Connect and check that it works.
|
||||
|
|
@ -81,20 +85,28 @@ class TlsConnectTestBase : public ::testing::Test {
|
|||
void CheckKeys(SSLKEAType kea_type, SSLAuthType auth_type) const;
|
||||
// This version assumes defaults.
|
||||
void CheckKeys() const;
|
||||
// Check that keys on resumed sessions.
|
||||
void CheckKeysResumption(SSLKEAType kea_type, SSLNamedGroup kea_group,
|
||||
SSLNamedGroup original_kea_group,
|
||||
SSLAuthType auth_type,
|
||||
SSLSignatureScheme sig_scheme);
|
||||
void CheckGroups(const DataBuffer& groups,
|
||||
std::function<void(SSLNamedGroup)> check_group);
|
||||
void CheckShares(const DataBuffer& shares,
|
||||
std::function<void(SSLNamedGroup)> check_group);
|
||||
void CheckEpochs(uint16_t client_epoch, uint16_t server_epoch) const;
|
||||
|
||||
void ConfigureVersion(uint16_t version);
|
||||
void SetExpectedVersion(uint16_t version);
|
||||
// Expect resumption of a particular type.
|
||||
void ExpectResumption(SessionResumptionMode expected);
|
||||
void ExpectResumption(SessionResumptionMode expected,
|
||||
uint8_t num_resumed = 1);
|
||||
void DisableAllCiphers();
|
||||
void EnableOnlyStaticRsaCiphers();
|
||||
void EnableOnlyDheCiphers();
|
||||
void EnableSomeEcdhCiphers();
|
||||
void EnableExtendedMasterSecret();
|
||||
void ConfigureSelfEncrypt();
|
||||
void ConfigureSessionCache(SessionResumptionMode client,
|
||||
SessionResumptionMode server);
|
||||
void EnableAlpn();
|
||||
|
|
@ -103,7 +115,7 @@ class TlsConnectTestBase : public ::testing::Test {
|
|||
void CheckAlpn(const std::string& val);
|
||||
void EnableSrtp();
|
||||
void CheckSrtp() const;
|
||||
void SendReceive();
|
||||
void SendReceive(size_t total = 50);
|
||||
void SetupForZeroRtt();
|
||||
void SetupForResume();
|
||||
void ZeroRttSendReceive(
|
||||
|
|
@ -115,6 +127,9 @@ class TlsConnectTestBase : public ::testing::Test {
|
|||
void DisableECDHEServerKeyReuse();
|
||||
void SkipVersionChecks();
|
||||
|
||||
// Move the DTLS timers for both endpoints to pop the next timer.
|
||||
void ShiftDtlsTimers();
|
||||
|
||||
protected:
|
||||
SSLProtocolVariant variant_;
|
||||
std::shared_ptr<TlsAgent> client_;
|
||||
|
|
@ -123,6 +138,7 @@ class TlsConnectTestBase : public ::testing::Test {
|
|||
std::unique_ptr<TlsAgent> server_model_;
|
||||
uint16_t version_;
|
||||
SessionResumptionMode expected_resumption_mode_;
|
||||
uint8_t expected_resumptions_;
|
||||
std::vector<std::vector<uint8_t>> session_ids_;
|
||||
|
||||
// A simple value of "a", "b". Note that the preferred value of "a" is placed
|
||||
|
|
@ -244,6 +260,11 @@ class TlsConnectDatagram13 : public TlsConnectTestBase {
|
|||
: TlsConnectTestBase(ssl_variant_datagram, SSL_LIBRARY_VERSION_TLS_1_3) {}
|
||||
};
|
||||
|
||||
class TlsConnectDatagramPre13 : public TlsConnectDatagram {
|
||||
public:
|
||||
TlsConnectDatagramPre13() {}
|
||||
};
|
||||
|
||||
// A variant that is used only with Pre13.
|
||||
class TlsConnectGenericPre13 : public TlsConnectGeneric {};
|
||||
|
||||
|
|
@ -256,8 +277,10 @@ class TlsKeyExchangeTest : public TlsConnectGeneric {
|
|||
|
||||
void EnsureKeyShareSetup();
|
||||
void ConfigNamedGroups(const std::vector<SSLNamedGroup>& groups);
|
||||
std::vector<SSLNamedGroup> GetGroupDetails(const DataBuffer& ext);
|
||||
std::vector<SSLNamedGroup> GetShareDetails(const DataBuffer& ext);
|
||||
std::vector<SSLNamedGroup> GetGroupDetails(
|
||||
const std::shared_ptr<TlsExtensionCapture>& capture);
|
||||
std::vector<SSLNamedGroup> GetShareDetails(
|
||||
const std::shared_ptr<TlsExtensionCapture>& capture);
|
||||
void CheckKEXDetails(const std::vector<SSLNamedGroup>& expectedGroups,
|
||||
const std::vector<SSLNamedGroup>& expectedShares);
|
||||
void CheckKEXDetails(const std::vector<SSLNamedGroup>& expectedGroups,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue