Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1164233 Details for
Bug 1342158
nss-3.24 does no longer support ssl V2, installation of IPA fails because nss init fails
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Kai's upstream commits merged and adapted for fedora
mozbz1277569backport.patch (text/plain), 3.26 KB, created by
Elio Maldonado Batiz
on 2016-06-02 21:22:26 UTC
(
hide
)
Description:
Kai's upstream commits merged and adapted for fedora
Filename:
MIME Type:
Creator:
Elio Maldonado Batiz
Created:
2016-06-02 21:22:26 UTC
Size:
3.26 KB
patch
obsolete
>--- ./lib/ssl/sslsock.c.compatibility 2016-06-02 10:59:07.188831825 -0700 >+++ ./lib/ssl/sslsock.c 2016-06-02 10:59:07.205831404 -0700 >@@ -675,16 +675,28 @@ > PORT_SetError(SEC_ERROR_INVALID_ARGS); > rv = SECFailure; /* not allowed */ > } > break; > } > ssl_EnableSSL3(&ss->vrange, on); > break; > >+ case SSL_ENABLE_SSL2: >+ case SSL_V2_COMPATIBLE_HELLO: >+ /* We no longer support SSL v2. >+ * However, if an old application requests to disable SSL v2, >+ * we shouldn't fail. >+ */ >+ if (on) { >+ PORT_SetError(SEC_ERROR_INVALID_ARGS); >+ rv = SECFailure; >+ } >+ break; >+ > case SSL_NO_CACHE: > ss->opt.noCache = on; > break; > > case SSL_ENABLE_FDX: > if (on && ss->opt.noLocks) { > PORT_SetError(SEC_ERROR_INVALID_ARGS); > rv = SECFailure; >@@ -856,16 +868,20 @@ > on = ss->opt.handshakeAsServer; > break; > case SSL_ENABLE_TLS: > on = ss->vrange.max >= SSL_LIBRARY_VERSION_TLS_1_0; > break; > case SSL_ENABLE_SSL3: > on = ss->vrange.min == SSL_LIBRARY_VERSION_3_0; > break; >+ case SSL_ENABLE_SSL2: >+ case SSL_V2_COMPATIBLE_HELLO: >+ on = PR_FALSE; >+ break; > case SSL_NO_CACHE: > on = ss->opt.noCache; > break; > case SSL_ENABLE_FDX: > on = ss->opt.fdx; > break; > case SSL_ROLLBACK_DETECTION: > on = ss->opt.detectRollBack; >@@ -967,16 +983,20 @@ > on = ssl_defaults.handshakeAsServer; > break; > case SSL_ENABLE_TLS: > on = versions_defaults_stream.max >= SSL_LIBRARY_VERSION_TLS_1_0; > break; > case SSL_ENABLE_SSL3: > on = versions_defaults_stream.min == SSL_LIBRARY_VERSION_3_0; > break; >+ case SSL_ENABLE_SSL2: >+ case SSL_V2_COMPATIBLE_HELLO: >+ on = PR_FALSE; >+ break; > case SSL_NO_CACHE: > on = ssl_defaults.noCache; > break; > case SSL_ENABLE_FDX: > on = ssl_defaults.fdx; > break; > case SSL_ROLLBACK_DETECTION: > on = ssl_defaults.detectRollBack; >@@ -1100,16 +1120,28 @@ > case SSL_ENABLE_TLS: > ssl_EnableTLS(&versions_defaults_stream, on); > break; > > case SSL_ENABLE_SSL3: > ssl_EnableSSL3(&versions_defaults_stream, on); > break; > >+ case SSL_ENABLE_SSL2: >+ case SSL_V2_COMPATIBLE_HELLO: >+ /* We no longer support SSL v2. >+ * However, if an old application requests to disable SSL v2, >+ * we shouldn't fail. >+ */ >+ if (on) { >+ PORT_SetError(SEC_ERROR_INVALID_ARGS); >+ return SECFailure; >+ } >+ break; >+ > case SSL_NO_CACHE: > ssl_defaults.noCache = on; > break; > > case SSL_ENABLE_FDX: > if (on && ssl_defaults.noLocks) { > PORT_SetError(SEC_ERROR_INVALID_ARGS); > return SECFailure;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1342158
: 1164233