mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Update NSS to 3.41
This commit is contained in:
parent
d5f6e64f43
commit
5f0986e66f
540 changed files with 49568 additions and 10631 deletions
|
|
@ -34,7 +34,7 @@ class DataBuffer {
|
|||
|
||||
void Allocate(size_t l) {
|
||||
delete[] data_;
|
||||
data_ = new uint8_t[l ? l : 1]; // Don't depend on new [0].
|
||||
data_ = new uint8_t[l ? l : 1](); // Don't depend on new [0].
|
||||
len_ = l;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#include "prerror.h"
|
||||
#include "prio.h"
|
||||
|
||||
#include "scoped_ptrs.h"
|
||||
#include "nss_scoped_ptrs.h"
|
||||
|
||||
class DummyIOLayerMethods {
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
* 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 scoped_ptrs_h__
|
||||
#define scoped_ptrs_h__
|
||||
#ifndef nss_scoped_ptrs_h__
|
||||
#define nss_scoped_ptrs_h__
|
||||
|
||||
#include <memory>
|
||||
#include "cert.h"
|
||||
|
|
@ -13,7 +13,6 @@
|
|||
#include "p12.h"
|
||||
#include "pk11pub.h"
|
||||
#include "pkcs11uri.h"
|
||||
#include "sslexp.h"
|
||||
|
||||
struct ScopedDelete {
|
||||
void operator()(CERTCertificate* cert) { CERT_DestroyCertificate(cert); }
|
||||
|
|
@ -29,6 +28,9 @@ struct ScopedDelete {
|
|||
void operator()(PK11SymKey* key) { PK11_FreeSymKey(key); }
|
||||
void operator()(PRFileDesc* fd) { PR_Close(fd); }
|
||||
void operator()(SECAlgorithmID* id) { SECOID_DestroyAlgorithmID(id, true); }
|
||||
void operator()(SECKEYEncryptedPrivateKeyInfo* e) {
|
||||
SECKEY_DestroyEncryptedPrivateKeyInfo(e, true);
|
||||
}
|
||||
void operator()(SECItem* item) { SECITEM_FreeItem(item, true); }
|
||||
void operator()(SECKEYPublicKey* key) { SECKEY_DestroyPublicKey(key); }
|
||||
void operator()(SECKEYPrivateKey* key) { SECKEY_DestroyPrivateKey(key); }
|
||||
|
|
@ -39,9 +41,6 @@ struct ScopedDelete {
|
|||
void operator()(PLArenaPool* arena) { PORT_FreeArena(arena, PR_FALSE); }
|
||||
void operator()(PK11Context* context) { PK11_DestroyContext(context, true); }
|
||||
void operator()(PK11GenericObject* obj) { PK11_DestroyGenericObject(obj); }
|
||||
void operator()(SSLResumptionTokenInfo* token) {
|
||||
SSL_DestroyResumptionTokenInfo(token);
|
||||
}
|
||||
void operator()(SEC_PKCS12DecoderContext* dcx) {
|
||||
SEC_PKCS12DecoderFinish(dcx);
|
||||
}
|
||||
|
|
@ -69,6 +68,7 @@ SCOPED(PK11SlotInfo);
|
|||
SCOPED(PK11SymKey);
|
||||
SCOPED(PRFileDesc);
|
||||
SCOPED(SECAlgorithmID);
|
||||
SCOPED(SECKEYEncryptedPrivateKeyInfo);
|
||||
SCOPED(SECItem);
|
||||
SCOPED(SECKEYPublicKey);
|
||||
SCOPED(SECKEYPrivateKey);
|
||||
|
|
@ -77,10 +77,9 @@ SCOPED(PK11URI);
|
|||
SCOPED(PLArenaPool);
|
||||
SCOPED(PK11Context);
|
||||
SCOPED(PK11GenericObject);
|
||||
SCOPED(SSLResumptionTokenInfo);
|
||||
SCOPED(SEC_PKCS12DecoderContext);
|
||||
SCOPED(CERTDistNames);
|
||||
|
||||
#undef SCOPED
|
||||
|
||||
#endif // scoped_ptrs_h__
|
||||
#endif // nss_scoped_ptrs_h__
|
||||
35
security/nss/cpputil/scoped_ptrs_ssl.h
Normal file
35
security/nss/cpputil/scoped_ptrs_ssl.h
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* vim: set ts=2 et sw=2 tw=80: */
|
||||
/* 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 scoped_ptrs_ssl_h__
|
||||
#define scoped_ptrs_ssl_h__
|
||||
|
||||
#include <memory>
|
||||
#include "sslexp.h"
|
||||
|
||||
struct ScopedDeleteSSL {
|
||||
void operator()(SSLResumptionTokenInfo* token) {
|
||||
SSL_DestroyResumptionTokenInfo(token);
|
||||
}
|
||||
};
|
||||
|
||||
template <class T>
|
||||
struct ScopedMaybeDeleteSSL {
|
||||
void operator()(T* ptr) {
|
||||
if (ptr) {
|
||||
ScopedDeleteSSL del;
|
||||
del(ptr);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#define SCOPED(x) typedef std::unique_ptr<x, ScopedMaybeDeleteSSL<x> > Scoped##x
|
||||
|
||||
SCOPED(SSLResumptionTokenInfo);
|
||||
|
||||
#undef SCOPED
|
||||
|
||||
#endif // scoped_ptrs_ssl_h__
|
||||
|
|
@ -20,13 +20,6 @@
|
|||
|
||||
namespace nss_test {
|
||||
|
||||
const uint8_t kTlsChangeCipherSpecType = 20;
|
||||
const uint8_t kTlsAlertType = 21;
|
||||
const uint8_t kTlsHandshakeType = 22;
|
||||
const uint8_t kTlsApplicationDataType = 23;
|
||||
const uint8_t kTlsAltHandshakeType = 24;
|
||||
const uint8_t kTlsAckType = 25;
|
||||
|
||||
const uint8_t kTlsHandshakeClientHello = 1;
|
||||
const uint8_t kTlsHandshakeServerHello = 2;
|
||||
const uint8_t kTlsHandshakeNewSessionTicket = 4;
|
||||
|
|
@ -48,6 +41,8 @@ const uint8_t kTlsAlertBadRecordMac = 20;
|
|||
const uint8_t kTlsAlertRecordOverflow = 22;
|
||||
const uint8_t kTlsAlertHandshakeFailure = 40;
|
||||
const uint8_t kTlsAlertBadCertificate = 42;
|
||||
const uint8_t kTlsAlertCertificateRevoked = 44;
|
||||
const uint8_t kTlsAlertCertificateExpired = 45;
|
||||
const uint8_t kTlsAlertIllegalParameter = 47;
|
||||
const uint8_t kTlsAlertDecodeError = 50;
|
||||
const uint8_t kTlsAlertDecryptError = 51;
|
||||
|
|
@ -60,7 +55,7 @@ const uint8_t kTlsAlertUnrecognizedName = 112;
|
|||
const uint8_t kTlsAlertNoApplicationProtocol = 120;
|
||||
|
||||
const uint8_t kTlsFakeChangeCipherSpec[] = {
|
||||
kTlsChangeCipherSpecType, // Type
|
||||
ssl_ct_change_cipher_spec, // Type
|
||||
0xfe,
|
||||
0xff, // Version
|
||||
0x00,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue