a66ef51f47
Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. This package tracks 24 extended support release branch.
17 lines
1,018 B
C++
17 lines
1,018 B
C++
$NetBSD: patch-security_manager_ssl_src_JARSignatureVerification.cpp,v 1.1 2013/11/03 04:52:00 ryoon Exp $
|
|
|
|
--- security/manager/ssl/src/JARSignatureVerification.cpp.orig 2013-09-10 03:43:51.000000000 +0000
|
|
+++ security/manager/ssl/src/JARSignatureVerification.cpp
|
|
@@ -596,9 +596,9 @@ OpenSignedJARFile(nsIFile * aJarFile,
|
|
}
|
|
|
|
// Verify that the signature file is a valid signature of the SF file
|
|
- if (!SEC_PKCS7VerifyDetachedSignatureAtTime(p7_info, certUsageObjectSigner,
|
|
- &sfCalculatedDigest.get(),
|
|
- HASH_AlgSHA1, false, PR_Now())) {
|
|
+ if (!SEC_PKCS7VerifyDetachedSignature(p7_info, certUsageObjectSigner,
|
|
+ &sfCalculatedDigest.get(), HASH_AlgSHA1,
|
|
+ false)) {
|
|
PRErrorCode error = PR_GetError();
|
|
const char * errorName = PR_ErrorToName(error);
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("Failed to verify detached signature: %s",
|