Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 584565 Details for
Bug 811753
crypt() is broken in fips mode
[?]
New
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.rh83 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]
Introduce sysconf(_SC_CRYPTO_FIPS_ENABLED)
sysconf-fips-bz811753.patch (text/plain), 1.33 KB, created by
Alexandre Oliva
on 2012-05-15 07:35:26 UTC
(
hide
)
Description:
Introduce sysconf(_SC_CRYPTO_FIPS_ENABLED)
Filename:
MIME Type:
Creator:
Alexandre Oliva
Created:
2012-05-15 07:35:26 UTC
Size:
1.33 KB
patch
obsolete
>for ChangeLog >2012-05-15 Alexandre Oliva <aoliva@redhat.com> > > * bits/confname.h (_SC_CRYPTO_FIPS_ENABLED): New. > * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Support it. > >Index: bits/confname.h >=================================================================== >--- bits/confname.h.orig 2012-05-15 04:31:06.434914368 -0300 >+++ bits/confname.h 2012-05-15 04:32:22.858808416 -0300 >@@ -526,8 +526,10 @@ enum > > _SC_THREAD_ROBUST_PRIO_INHERIT, > #define _SC_THREAD_ROBUST_PRIO_INHERIT _SC_THREAD_ROBUST_PRIO_INHERIT >- _SC_THREAD_ROBUST_PRIO_PROTECT >+ _SC_THREAD_ROBUST_PRIO_PROTECT, > #define _SC_THREAD_ROBUST_PRIO_PROTECT _SC_THREAD_ROBUST_PRIO_PROTECT >+ _SC_CRYPTO_FIPS_ENABLED >+#define _SC_CRYPTO_FIPS_ENABLED _SC_CRYPTO_FIPS_ENABLED > }; > > /* Values for the NAME argument to `confstr'. */ >Index: sysdeps/unix/sysv/linux/sysconf.c >=================================================================== >--- sysdeps/unix/sysv/linux/sysconf.c.orig 2012-05-15 04:31:06.309916177 -0300 >+++ sysdeps/unix/sysv/linux/sysconf.c 2012-05-15 04:32:22.908807693 -0300 >@@ -114,6 +114,12 @@ __sysconf (int name) > procfname = "/proc/sys/kernel/rtsig-max"; > break; > >+#ifdef _SC_CRYPTO_FIPS_ENABLED >+ case _SC_CRYPTO_FIPS_ENABLED: >+ procfname = "/proc/sys/crypto/fips_enabled"; >+ break; >+#endif >+ > default: > break; > }
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 811753
:
576902
|
584543
| 584565 |
584570
|
589580