summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* close NSS_RFC4507BIS_BRANCHNSS_RFC4507BIS_BRANCHFranziskus Kiefer2017-09-290-0/+0
|
* Backed out the addr_in_use_error changes. Rewrote the complicated booleanwtc%google.com2008-03-061-16/+10
| | | | expression using if-else statements.
* Undo unnecessary changes. Use the 'spec' input argument in one morewtc%google.com2008-03-061-8/+4
| | | | place in ssl3_CacheWrappedMasterSecret.
* Reformatted some code.wtc%google.com2008-03-061-3/+4
|
* Wrapped a long line.wtc%google.com2008-03-051-1/+2
| | | | Tag: NSS_RFC4507BIS_BRANCH
* Rename functions: Ext => Xtn.wtc%google.com2008-03-054-30/+30
| | | | | | Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3con.c ssl3ecc.c ssl3ext.c sslimpl.h
* Checked in a patch by Nagendra Modadugu -- handle extensions for SSL3wtc%google.com2008-03-053-12/+12
| | | | | | | | again in ssl3_HandleClientHello. Define SESS_TICKET_KEY_NAME_PREFIX_LEN macro. Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3con.c ssl3ext.c ssl3prot.h
* Use unsigned char consistently instead of an odd uint8. Makewtc%google.com2008-03-043-128/+144
| | | | | | | | ssl_GetSessionTicketKeysPKCS11 use the same locking pattern as ssl_GetSessionTicketKeys. Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3ext.c sslimpl.h sslsnce.c
* Bug 403563: code cleanup.wtc%google.com2008-03-011-25/+19
| | | | Tag: NSS_RFC4507BIS_BRANCH
* Bug 304549: miscellaneous minor (reformatting, renaming) changes.wtc%google.com2008-03-014-27/+28
| | | | | | Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3con.c ssl3ext.c sslimpl.h sslnonce.c
* Bug 403563: add error messages for the two New Session Ticket relatedwtc%google.com2008-03-011-0/+6
| | | | | errors. Tag: NSS_RFC4507BIS_BRANCH
* Comment fix.wtc%google.com2008-02-261-1/+1
|
* Bug 403563: mostly renaming and reformatting. The following are renamed:wtc%google.com2008-02-265-54/+57
| | | | | | | | | | | | | | | | | ss->xtnData.senders => ss->xtnData.serverSenders SupportedPointExt => SupportedPointFormatsExt elliptic_point_formats_xtn => ec_point_formats_xtn client_handlers => serverHelloHandlers server_handlers => clientHelloHandlers MAX_EXTENSION_SENDERS => MAX_EXTENSIONS Reduce MAX_EXTENSIONS from 8 to 4 and do not terminate clientHelloSenders in { -1, NULL }. Add TODO comments and update some comments. Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3con.c ssl3ecc.c ssl3ext.c ssl3prot.h sslimpl.h
* Renamed the struct tag SessionTicketStr to follow NSS naming convention.wtc%google.com2008-02-141-1/+1
|
* Made ssl3stats static again. We should rename it if we want to make itwtc%google.com2008-02-143-5/+4
| | | | | extern. Modified files: ssl3con.c ssl3ext.c sslimpl.h
* Made some formatting changes.wtc%google.com2008-02-141-5/+2
|
* Include pk11pub.h instead of pk11func.h.wtc%google.com2008-02-141-1/+1
|
* Bug 403563: removed unused macro DISALLOW_SERVER_HELLO_EXTENSIONS. Addedwtc%google.com2008-02-141-4/+9
| | | | a block comment to explain what we don't do.
* Bug 403563: checked in Nagendra Modadugu's proposed patch v5.2.wtc%google.com2008-02-146-11/+29
| | | | | | | | Modified Files: Tag: NSS_RFC4507BIS_BRANCH cmd/selfserv/selfserv.c cmd/strsclnt/strsclnt.c lib/ssl/ssl3con.c lib/ssl/ssl3ext.c lib/ssl/sslimpl.h lib/ssl/sslt.h
* Bug 334961: backed out the previous change.wtc%google.com2008-02-141-2/+1
|
* Include "prinit.h" for PR_CallOnce.wtc%google.com2008-02-081-0/+1
|
* Visual C++ seems to treat enums as signed integers. A signed 1-bit bitwtc%google.com2008-02-061-1/+1
| | | | | field has values -1 and 0. We want 0 and 1, so we need to use either use an unsigned bit field or not use a bit field.
* Bug 334961: ignore the PR_ADDRESS_IN_USE_ERROR from PR_Connect.wtc%google.com2008-02-052-2/+4
|
* Match strsclnt's session resumption statistics output.wtc%google.com2008-02-031-4/+4
|
* Fix compilation errors. Previous change resulted in nested comments.wtc%google.com2008-02-031-2/+2
|
* More whitespace and reformatting changes.wtc%google.com2008-02-032-5/+4
|
* Whitespace changes and reformatting to reduce diffs or improve readability.wtc%google.com2008-02-0311-38/+32
|
* Bug 403563: shortened "enableSessionTicketExtension" towtc%google.com2008-02-0310-57/+55
| | | | "enableSessionTickets". Changed "TLS1" to "TLS". Some reformatting.
* Bug 403563: checked in Nagendra's proposed patch v5, pluswtc%google.com2008-02-029-79/+363
| | | | | | | | | | | - shorten SSL_ENABLE_SESSION_TICKET_EXTENSION to SSL_ENABLE_SESSION_TICKETS - fix compiler warnings about PK11_CipherOp calls Modified Files: Tag: NSS_RFC4507BIS_BRANCH cmd/selfserv/selfserv.c cmd/strsclnt/strsclnt.c cmd/tstclnt/tstclnt.c lib/ssl/ssl.h lib/ssl/ssl3ext.c lib/ssl/ssl3prot.h lib/ssl/sslimpl.h lib/ssl/sslsnce.c lib/ssl/sslsock.c
* Bug 403563: declare variables at the beginning of a block.wtc%google.com2008-01-111-3/+3
| | | | | CVS 403563 Tag: NSS_RFC4507BIS_BRANCH
* Bug 403563: checked in patch v4 from Nagendra Modadugu -- fixed ssl3ecc.c,wtc%google.com2008-01-102-13/+13
| | | | | | | | use typecast to truncate to uint8, and use PK11_GetBestSlotMultiple instead of PK11_GetBestSlot. Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3ecc.c ssl3ext.c
* Bug 403563: checked in Nagendra Modadugu's patch v3wtc%google.com2008-01-093-57/+46
| | | | | | | | | | - moved TLS1ExtensionData to ss - shortened member names - removed if (length > 0) goto alert_loser from ssl3_HandleServerHello in ssl3con.c so we ignore stuff after the end of the server hello. Modified Files: Tag: NSS_RFC4507BIS_BRANCH ssl3con.c ssl3ext.c sslimpl.h
* Bug 403563: implement the TLS session ticket extension as specified inwtc%google.com2007-12-2215-286/+1771
| | | | | | | | | | | | | | | draft-salowey-tls-rfc4507bis-01.txt. Contributed by Nagendra Modadugu of Google. Modified Files: Tag: NSS_RFC4507BIS_BRANCH cmd/selfserv/selfserv.c cmd/strsclnt/strsclnt.c cmd/tstclnt/tstclnt.c lib/ssl/manifest.mn lib/ssl/ssl.h lib/ssl/ssl3con.c lib/ssl/ssl3ecc.c lib/ssl/ssl3prot.h lib/ssl/sslerr.h lib/ssl/sslimpl.h lib/ssl/sslnonce.c lib/ssl/sslsock.c lib/ssl/sslt.h tests/ssl/sslstress.txt Added Files: Tag: NSS_RFC4507BIS_BRANCH lib/ssl/ssl3ext.c
* fixup commit for branch 'NSS_RFC4507BIS_BRANCH'cvs2hg2007-12-210-0/+0
|
* Bug 409224: don't use the obsolete gcc flag -no-cpp-precomp. The patch isNSS_RFC4507BIS_BASEwtc%google.com2007-12-211-1/+1
| | | | contributed by Mark Mentovai <mark@moxienet.com>. r=wtc
* bug 401928 softoken updates for pkcs5 v2rrelyea%redhat.com2007-12-213-7/+16
| | | | r= nelsonb
* Tree compilation bug fix introduced by patch to bug 373367.alexei.volkov.bugs%sun.com2007-12-191-0/+1
|
* 373367 - verify OCSP response signature in libpkix without decoding and ↵alexei.volkov.bugs%sun.com2007-12-198-626/+410
| | | | reencoding. r=kengert
* 397832 - libpkix leaks memory if a macro calls a function that returns an ↵alexei.volkov.bugs%sun.com2007-12-1913-101/+104
| | | | error.r=nelson
* Bug 396045: move the NULL check to the correct position in the code. Thewtc%google.com2007-12-121-3/+3
| | | | | patch is contributed by Bruno 'Aqualon' Escherl <aqualon@aquachan.de>. r=rrelyea,wtc
* Bug 396044: return NULL instead of uninitialized fwObject. The patch iswtc%google.com2007-12-121-1/+1
| | | | contributed by Bruno 'Aqualon' Escherl <aqualon@aquachan.de>. r=rrelyea,wtc
* Ignored leaks update.slavomir.katuscak%sun.com2007-12-111-3/+0
| | | | Bug 393183 - removed (already fixed).
* 407064 - pkix_pl_LdapCertStore_BuildCrlList should not fail if a crl fails ↵alexei.volkov.bugs%sun.com2007-12-111-2/+3
| | | | to be decoded. r=nelson
* 397825 - libpkix: ifdef code that uses user object types. r=nelsonalexei.volkov.bugs%sun.com2007-12-1014-186/+310
|
* 406647 - libpkix does not use user defined revocation checkers.r=nelsonalexei.volkov.bugs%sun.com2007-12-061-3/+12
|
* 397832 - libpkix leaks memory if a macro calls a function that returns an ↵alexei.volkov.bugs%sun.com2007-12-0623-62/+110
| | | | error. patch 291756. r=nelson
* Bug 393183 - Patch. r=nelson,sr=christopheslavomir.katuscak%sun.com2007-12-061-1/+3
|
* Fix for bug 391771 . pk11_config_name and pk11_config_strings leaked on ↵julien.pierre.boogz%sun.com2007-12-062-1/+19
| | | | shutdown. Add new PK11_UnconfigurePKCS11 call to free the strings. r=nelson, relyea
* 397832 - libpkix leaks memory if a macro calls a function that returns an ↵alexei.volkov.bugs%sun.com2007-12-051-2/+5
| | | | error.patch 391719. r=nelson
* 399326 - libpkix is unable to validate cert for certUsageStatusResponder. ↵alexei.volkov.bugs%sun.com2007-12-052-32/+70
| | | | r=nelson