summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* close MOZILLA_1_5a_BRANCHMOZILLA_1_5a_BRANCHFranziskus Kiefer2017-09-290-0/+0
|
* fixup commit for branch 'MOZILLA_1_5a_BRANCH'MOZILLA_1_5a_RELEASEMOZILLA_1_5a_BASEFIREBIRD_0_6_1_RELEASEcvs2hg2003-07-0919-5593/+421
|
* fixup commit for branch 'MOZILLA_1_4_BRANCH'cvs2hg2003-05-2160-1183/+653
|
* Fix for bug 200394 - update softoken version to 3.8 . r=wtcjpierre%netscape.com2003-04-031-2/+2
|
* Set NSS version to 3.8.wtc%netscape.com2003-04-021-2/+3
|
* Fix bug 200224. Eliminate null ptr dereference.nelsonb%netscape.com2003-04-021-1/+1
|
* Import NSPR 4.3 RTM.wtc%netscape.com2003-04-021-1/+1
|
* Fix bug 95138. Make debug .EXE files with debug symbols.nelsonb%netscape.com2003-04-021-1/+1
|
* Bug 200179: prepend, rather than overwrite, the shared library search path.wtc%netscape.com2003-04-011-4/+4
| | | | We can't assume the shared library search path is not set.
* Destroy the hash context, public key, private key, and slot so that NSSwtc%netscape.com2003-04-011-2/+14
| | | | shutdown will succeed. r=relyea.
* Added a missing {.wtc%netscape.com2003-04-011-1/+1
|
* checking return value of NSS_Shutdown() - bug 171263bishakhabanerjee%netscape.com2003-04-011-1/+2
|
* checking return value of NSS_Shutdown - bug 171263bishakhabanerjee%netscape.com2003-04-011-1/+3
|
* checking return value of NSS_Shutdown() - bug 171263bishakhabanerjee%netscape.com2003-04-013-3/+9
|
* Checking return value of NSS_Shutdown() - bug 171263bishakhabanerjee%netscape.com2003-04-012-3/+8
|
* checking return value of NSS_Shutdown() - bug 171263bishakhabanerjee%netscape.com2003-04-014-4/+10
|
* Fix for 199227 - keep enumerating certs in tokens even if one token fails. ↵jpierre%netscape.com2003-04-011-3/+0
| | | | r=relyea
* Bug 195127: Turn off debugging output now that we have the AIX tinderboxwtc%netscape.com2003-03-2936-88/+4023
|\ | | | | | | working correctly.
| * Bug 199628: support shlibsign on OpenVMS. Pass $(OS_TARGET) instead ofwtc%netscape.com2003-03-293-14/+31
| | | | | | | | | | | | | | $(IS_WINDOWS) to sign.sh and sign.cmd (which ignores that argument). In sign.sh, use a case statement with three cases: Windows, OpenVMS, and others. The patch is contributed by Colin Blakes <colin@theblakes.com>. Modified Files: Makefile sign.cmd sign.sh
| * Changes to enable ECC over characteristic 2^m fields.nelsonb%netscape.com2003-03-2911-76/+1379
| | | | | | | | | | | | | | | | | | | | | | Contribution from Vipul Gupta <Vipul.Gupta@Sun.COM> Modified Files: nss/cmd/strsclnt/strsclnt.c nss/lib/cryptohi/seckey.c nss/lib/freebl/blapit.h nss/lib/freebl/ec.c nss/lib/freebl/manifest.mn nss/lib/freebl/mpi/Makefile nss/lib/softoken/ecdecode.c nss/lib/softoken/pkcs11.c nss/lib/ssl/ssl3con.c nss/lib/util/secoid.c nss/lib/util/secoidt.h
| * Backout change that broke Sun's build - requires gmake 3.79jpierre%netscape.com2003-03-281-20/+4
| |
| * Fix for bug 105271 - compile source files with full pathnames on Windows & ↵jpierre%netscape.com2003-03-281-4/+20
| | | | | | | | OS/2 to help debugging. r=wtc
| * Bug 195797: support building NSS with GCC 3.x on OS/2. The patch iswtc%netscape.com2003-03-273-9/+16
| | | | | | | | | | | | | | contributed by Javier Pedemonte <pedemont@us.ibm.com>. Modified Files: security/coreconf/OS2.mk security/coreconf/rules.mk security/nss/cmd/shlibsign/sign.cmd
| * Add missing return statement.nelsonb%netscape.com2003-03-271-0/+1
| |
| * Bug 199134: fixed build failures on FreeBSD. We need to specify -pthreadwtc%netscape.com2003-03-272-0/+5
| | | | | | | | | | | | | | when linking an executable (already doing that when linking a shared lib), and we need to use the -rpath-link flag to help the linker find the shared libraries that we indirectly link with. r=cls. Modified Files: coreconf/FreeBSD.mk nss/cmd/platlibs.mk
| * Bug 195127: set the LIBPATH environment variable (used by AIX) as absolutewtc%netscape.com2003-03-261-1/+1
| | | | | | | | | | | | | | | | pathname. It seems that AIX caches shared libraries. If another app loaded the same shared library earlier, the cached copy of the shared library, including the pathname with which it was loaded, will be used. So we need to ensure that all apps load libsoftokn3.so with an absolute pathname so that the pathname is correct to all apps.
| * Removed extraneous trailing / after directory pathnames.wtc%netscape.com2003-03-261-2/+2
| |
| * Add support for Elliptic Curve Cryptography. Bug 195135.nelsonb%netscape.com2003-03-265-0/+1478
| | | | | | | | | | | | | | | | | | Contributor(s): * Sheueling Chang Shantz <sheueling.chang@sun.com> and * Douglas Stebila <douglas@stebila.ca>, Sun Microsystems Laboratories Added Files: GF2m_ecl.c GF2m_ecl.h mpi/mp_gf2m.c mpi/mp_gf2m.h mpi/tests/mptest-b.c
| * Bug 199082: checked in Nelson's patch, whichwtc%netscape.com2003-03-267-5/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | a) changes selfserv to test the return value from NSS_Shutdown. b) changes SECMOD_Shutdown to set the error code SEC_ERROR_BUSY before returning SECFailure. c) Adds a new function SSL_ShutdownServerSessionIDCache to ssl.h. d) Changes selfserv to call SSL_ShutdownServerSessionIDCache before calling NSS_Shutdown. Modified Files: cmd/selfserv/selfserv.c lib/pk11wrap/pk11util.c lib/ssl/ssl.def lib/ssl/ssl.h lib/ssl/ssl3con.c lib/ssl/sslimpl.h lib/ssl/sslsnce.c
* | fixup commit for tag 'MOZILLA_1_4a_RELEASE'MOZILLA_1_4a_RELEASEcvs2hg2003-03-2919-1122/+55
|/
* Bug 194083: use qcc instead of gcc. The patch is contributed bywtc%netscape.com2003-03-251-7/+9
| | | | amardare@qnx.com.
* Fix bug 198099. Display DSA public keys in certs properly.nelsonb%netscape.com2003-03-251-30/+35
|
* Fix buildjpierre%netscape.com2003-03-251-1/+1
|
* bug 198622, redundant memset callsian.mcgreer%sun.com2003-03-243-4/+4
|
* Bug 142867: pk12util needs to be able to import intermediate CA's into hwrelyea%netscape.com2003-03-248-2/+66
| | | | tokens.
* Removed the experimental change. It did not cause the intermittent QAwtc%netscape.com2003-03-231-2/+2
|\ | | | | | | failures on the "aix64" tinderbox to go away.
| * fixup commit for tag 'MOZILLA_200303241605_TAG'MOZILLA_200303241605_TAGcvs2hg2003-03-2213-1097/+0
| |
* | Deleted an obsolete comment.wtc%netscape.com2003-03-221-1/+0
| |
* | An experimental change for debugging bug 195127: on the 64-bit AIXwtc%netscape.com2003-03-221-2/+2
|/ | | | | tinderbox the dist/${OBJDIR}/lib/libsoftokn3.chk symlink sometimes does not get created.
* Added more debugging output for bug 195127.wtc%netscape.com2003-03-221-0/+3
|
* Bug 198543: checked in the patch from Chris Seawood to fix BeOS bustage.wtc%netscape.com2003-03-221-1/+1
| | | | Apparently it is necessary to have LIBRARY_PATH set in the environment.
* BSD/OS seems to be using GNU ld, which needs -rpath-link to find thewtc%netscape.com2003-03-221-0/+4
| | | | implicit dependency of an explicitly lined .so at link time.
* bug 168393 PK11SDR_Decrypt() does not call PK11_Authenticate() before searchrelyea%netscape.com2003-03-221-0/+3
| | | | for the key.
* bug 198470 "Cached certs not updated after token reset." r=ian.mgreer r=wtcrelyea%netscape.com2003-03-221-0/+2
|
* Bug 198543: BeOS uses LIBRARY_PATH to search for shared libraries.wtc%netscape.com2003-03-211-0/+2
|
* Rewrote without the dirname() and basename() calls because they are notwtc%netscape.com2003-03-212-14/+17
| | | | available on some Unix platforms (e.g., BSD/OS 4.2).
* Resurrected the workaround in revision 1.2. It may be difficult for somewtc%netscape.com2003-03-211-0/+57
| | | | OSF1 users to upgrade their C compiler to the required versions.
* Bug 197890: backed out the previous checkin. For unknown reasons, thewtc%netscape.com2003-03-211-1/+1
| | | | | | Mozilla trunk Tinderbox machine "beast" had trouble running the cygpath command. It failed with the error "can't create title mutex, Win32 error 6".
* Bugzilla 198461: fixed build problem on OpenBSD. The patch is contributedwtc%netscape.com2003-03-211-1/+1
| | | | by timeless@bemail.org.
* On IRIX, dirname() and basename() are defined in -lgen.wtc%netscape.com2003-03-211-0/+4
|