mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +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
28
security/nss/fuzz/tls_client_config.h
Normal file
28
security/nss/fuzz/tls_client_config.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/* 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/. */
|
||||
|
||||
#ifndef tls_client_config_h__
|
||||
#define tls_client_config_h__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <cstddef>
|
||||
|
||||
class ClientConfig {
|
||||
public:
|
||||
ClientConfig(const uint8_t* data, size_t len);
|
||||
|
||||
bool FailCertificateAuthentication();
|
||||
bool EnableExtendedMasterSecret();
|
||||
bool RequireDhNamedGroups();
|
||||
bool EnableFalseStart();
|
||||
bool EnableDeflate();
|
||||
bool EnableCbcRandomIv();
|
||||
bool RequireSafeNegotiation();
|
||||
bool EnableCache();
|
||||
|
||||
private:
|
||||
uint64_t config_;
|
||||
};
|
||||
|
||||
#endif // tls_client_config_h__
|
||||
Loading…
Add table
Add a link
Reference in a new issue