Commit Graph

1012 Commits

Author SHA1 Message Date
nelsonb%netscape.com
5b19a40e9e Fix bug 68869. Don't ignore TLS no certificate messages when the server
requires client auth.  Work around bug in NT TCP stack by only shutting
down the socket for SEND (not for BOTH) after sending a bad_certificate
alert.  This avoids bogus CONNECTION_RESET_BY_PEER errors at the client.
2001-06-13 21:14:54 +00:00
sonmi%netscape.com
63fa350f6d removed -v option, made client and server write at the same time 2001-06-13 17:42:29 +00:00
mcgreer%netscape.com
a5b5e560b9 temporarily add debug output to bltest to try and track down win32 RSA QA failures. 2001-06-13 15:31:20 +00:00
sonmi%netscape.com
796c4fc66e tool for checking the version strings on Unix. needs work. 2001-06-13 00:10:53 +00:00
sonmi%netscape.com
0cda219441 turned on verbose to see where (if) selfserver is dying 2001-06-12 23:29:53 +00:00
nelsonb%netscape.com
83a08b6967 Don't use PR_Atomic functions on AIX since PPC cpus require memory
barrier instructions.
2001-06-12 22:53:00 +00:00
nicolson%netscape.com
0963d9331a Move new symbols to NSS 3.3 section of smime.def. 2001-06-12 22:25:32 +00:00
nicolson%netscape.com
b933a647a6 Make NSS_Init* idempotent.
Move new symbols to NSS 3.3 section of nss.def.
2001-06-12 22:25:13 +00:00
nicolson%netscape.com
7fcde8cbe5 isCACert should be CERT_IsCACert 2001-06-12 21:25:07 +00:00
nicolson%netscape.com
c022363108 Changes for NSS/JSS integration. 2001-06-12 20:57:20 +00:00
nelsonb%netscape.com
35577f7c85 Add two new functions to permit application tuning of the number of SSL
server session cache locks.  We may yet decide to back this out for the
NSS 3.3 release.  Modified Files: ssl.def ssl.h sslsnce.c
2001-06-12 20:27:12 +00:00
sonmi%netscape.com
dbf1ccd7c7 fixed one more "where is MKS installed" problem 2001-06-12 01:26:13 +00:00
sonmi%netscape.com
78ad808db6 added binary compatibility tests for Solaris x86 2001-06-12 01:25:04 +00:00
nelsonb%netscape.com
2fb89eeb0a Use NSPR's Atomic increment and decrement functions in the simulated
Posix semaphore code to make the non-contention case really fast.
Modified Files: sslmutex.c sslmutex.h
2001-06-12 01:10:01 +00:00
sonmi%netscape.com
de78cc575e removed RH 6.0, 6.1 and OSF1 4.0 2001-06-12 00:14:05 +00:00
sonmi%netscape.com
dd1ac6611a took out the 64 bit HW accelerator tests (did not find libraries) 2001-06-11 21:25:43 +00:00
nicolson%netscape.com
c3e0c972dd Let's try it with a tab instead of 4 spaces. 2001-06-10 23:06:37 +00:00
nicolson%netscape.com
ea5dbee986 Export pk11pqg.h, so I can call these functions from JSS. 2001-06-10 23:05:01 +00:00
nelsonb%netscape.com
7ae1c3135d Reduce warnings on Unix platforms that don't like bitfields in chars. 2001-06-09 19:45:22 +00:00
nelsonb%netscape.com
f41192132c Fix two bugs found in nightly QA. On Solaris/x86, don't assert that the
sid cache entry is a multiple of 8 bytes long.  On OSF1, reduce the
maximum number of POSIX semaphores so it doesn't exceed the per-process
limit of 256.
2001-06-09 19:30:21 +00:00
wtc%netscape.com
a291197f66 Bugzilla bug #84918: checked in Linux/ia64 porting patch from
Bill Nottingham <notting@redhat.com>.
Modified files: coreconf/Linux.mk, nss/tests/common/arch.sh
2001-06-09 17:14:59 +00:00
nelsonb%netscape.com
26c1355d94 Change ssl_Time() to use time() instead of PR_Now on systems that have it. 2001-06-09 03:20:13 +00:00
nelsonb%netscape.com
9509618196 3 Changes:
1. New SSL server session cache implementation that uses finer grained
locking to reduce lock contention, and does 128-way associative caching.
2. rename symbol SSL_SESSIONID_BYTES to SSL2_SESSIONID_BYTES.
3. Work around compiler bug on Solaris i386.
Modified Files:
    manifest.mn sslcon.c sslimpl.h sslsecur.c sslsnce.c
2001-06-09 03:18:09 +00:00
nelsonb%netscape.com
6166732e49 Portable POSIX-like unnamed semaphores that work in process-shared memory. 2001-06-08 02:56:31 +00:00
sonmi%netscape.com
45fadfe4e8 fixed a few strings that were not under "" 2001-06-08 01:51:59 +00:00
relyea%netscape.com
cb83c37391 fix spelling of PK11_PQG_GenSeed*() 2001-06-07 21:52:07 +00:00
relyea%netscape.com
2bdd1e95a0 Add PQG, spki, and some misch functions that JSS needs. 2001-06-07 21:51:29 +00:00
relyea%netscape.com
f6aeb2c72a Add Stub functions for PQG functions (until we implent PQG through the PKCS #11 interface). 2001-06-07 21:48:35 +00:00
relyea%netscape.com
2c16a917c9 Add function to encode a SPKI structure. 2001-06-07 21:47:29 +00:00
relyea%netscape.com
0e4602c3b1 Add new dercert functions for JSS. 2001-06-06 23:45:27 +00:00
relyea%netscape.com
4f6d9bfe6f Add DER version of key for cert exists for JSS. 2001-06-06 23:41:24 +00:00
relyea%netscape.com
70c2f8fb07 Add DER version of isCA for JSS. 2001-06-06 23:40:51 +00:00
wtc%netscape.com
29aa0c3c90 Bugzilla bug #77884: fixed discrepancy between the size of an array and
the variable that represents the array size.  Let the compiler compute
the value for us instead of using hardcoded constants.  Thanks to
andrew@fernandes.org for reporting and tracking down this bug.
2001-06-06 17:00:51 +00:00
wtc%netscape.com
3d8ad4fec1 Bugzilla bug #83811: added a new implicit rule to build BUILT_CSRCS
because VPATH or vpath doesn't search in a directory that doesn't
exist at the beginning of a make invocation even if it is created
by the make invocation.
Modified files: coreconf/rules.mk, nss/lib/fortcrypt/swfort/manifest.mn
2001-06-05 00:32:14 +00:00
nelsonb%netscape.com
6bfd47f3e1 Fix bug that caused version number to be wrong in SSL3 client hellos
when restarting an SSL3 (not TLS) session.  (no bug number)
2001-06-05 00:26:37 +00:00
wtc%netscape.com
e129f78dda The rule for creating nslib.c does not need to be a double-colon rule.
Modified it to use automatic variables ($+ and $@) instead of hardcoded
file names.
2001-06-03 05:36:28 +00:00
wtc%netscape.com
c77cd80205 Simplified the nss_build_all and nss_RelEng_bld rules; they don't
need to create recursive make processes.
2001-06-03 05:28:18 +00:00
wtc%netscape.com
fd82935c29 Bugzilla bug #83811: deleted the useless vpath %.c $(OBJDIR) because
OBJDIR is not defined yet.  Restored VPATH = $(OBJDIR) as a temp
workaround.  Also deleted GARBAGE = nslib.c, which is no longer
correct.
2001-06-02 15:59:58 +00:00
wtc%netscape.com
2966bd2715 Deleted redundant VPATH because vpath is enough. 2001-06-02 06:12:29 +00:00
wtc%netscape.com
89d09973a5 Restored MPI_USERS as these files do depend on $(MPI_HDRS). 2001-06-02 03:07:26 +00:00
wtc%netscape.com
12c47a150a It is more efficient to use := to when the value of the assignment is
$(shell ...).
2001-06-02 03:03:58 +00:00
wtc%netscape.com
df8687e8f6 The strip function should be unnecessary. 2001-06-02 02:35:51 +00:00
wtc%netscape.com
db9fbf2a5d Turned on building of the software Fortezza pkcs11 module. It builds on
NT (both in source tree and with BUILD_TREE) for me.
2001-06-02 02:08:55 +00:00
wtc%netscape.com
cfda3d57fd Use = instead of += to define INCLUDES. It is fine to use = because
this is the very first file Makefile includes.
Define -DSWFORT in DEFINES rather than CFLAGS.  First, DEFINES is the
variable for macro defines.  Second, by not defining CFLAGS in this file,
we will be able to check in the fix for bug #77788.  However, I am not
sure whether we should fix bug #77788.
2001-06-01 23:32:39 +00:00
sonmi%netscape.com
66ef051c1e added hw accelerator stuff, that should nor affect any machine except iWs-perf 2001-06-01 23:10:35 +00:00
relyea%netscape.com
8b0d0faf84 Add function to import a cert using it's DER form rather than it's cert form. 2001-06-01 22:50:23 +00:00
relyea%netscape.com
beb9a19ad9 export new functions for JSS to use 2001-06-01 22:49:48 +00:00
wtc%netscape.com
5012fa24d8 Deleted unused variables CPORLN and MPI_USERS. 2001-06-01 01:07:58 +00:00
sonmi%netscape.com
5784d7f84f changed handleing of URLs to make it run better on Windows 2001-06-01 00:36:03 +00:00
sonmi%netscape.com
eff6311566 added directories to the searchpath for Solaris 86, made sure Sun Solaris
directories were not searched
2001-06-01 00:18:57 +00:00