This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"container/vector" | |
"fmt" | |
"go/ast" | |
"go/parser" | |
"go/token" | |
"io/ioutil" | |
"os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mozilla/security/nss/lib/ssl/ssl3con.c b/mozilla/security/nss/lib/ssl/ssl3con.c | |
index 8d4b05d..414707e 100644 | |
--- a/mozilla/security/nss/lib/ssl/ssl3con.c | |
+++ b/mozilla/security/nss/lib/ssl/ssl3con.c | |
@@ -5607,7 +5607,36 @@ ssl3_RestartHandshakeAfterCertReq(sslSocket * ss, | |
return rv; | |
} | |
+static SSL3AlertDescription | |
+ssl3_CertErrorToAlert(PRBool isTLS, int errCode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mozilla/security/nss/lib/certhigh/ocsp.c b/mozilla/security/nss/lib/certhigh/ocsp.c | |
index 0ffdb34..4a225df 100644 | |
--- a/mozilla/security/nss/lib/certhigh/ocsp.c | |
+++ b/mozilla/security/nss/lib/certhigh/ocsp.c | |
@@ -4797,6 +4797,112 @@ CERT_CheckOCSPStatus(CERTCertDBHandle *handle, CERTCertificate *cert, | |
} | |
/* | |
+ * FUNCTION: CERT_CacheOCSPResponseFromSideChannel | |
+ * First, this function caches the OCSP cache to see if a positive response |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mozilla/security/nss/cmd/selfserv/selfserv.c b/mozilla/security/nss/cmd/selfserv/selfserv.c | |
index 4c3d8e3..8e6acf8 100644 | |
--- a/mozilla/security/nss/cmd/selfserv/selfserv.c | |
+++ b/mozilla/security/nss/cmd/selfserv/selfserv.c | |
@@ -200,6 +200,7 @@ Usage(const char *progName) | |
"-u means enable Session Ticket extension for TLS.\n" | |
"-v means verbose output\n" | |
"-x means use export policy.\n" | |
+"-z mean enable compression.\n" | |
"-L seconds means log statistics every 'seconds' seconds (default=30).\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mozilla/security/nss/lib/ssl/ssl.h b/mozilla/security/nss/lib/ssl/ssl.h | |
index 3026b48..94935a0 100644 | |
--- a/mozilla/security/nss/lib/ssl/ssl.h | |
+++ b/mozilla/security/nss/lib/ssl/ssl.h | |
@@ -97,40 +97,42 @@ SSL_IMPORT PRFileDesc *SSL_ImportFD(PRFileDesc *model, PRFileDesc *fd); | |
#define SSL_ENABLE_SSL2 7 /* enable ssl v2 (on by default) */ | |
#define SSL_ENABLE_SSL3 8 /* enable ssl v3 (on by default) */ | |
#define SSL_NO_CACHE 9 /* don't use the session cache */ | |
/* (off by default) */ | |
#define SSL_REQUIRE_CERTIFICATE 10 /* (SSL_REQUIRE_FIRST_HANDSHAKE */ |
NewerOlder