This is an automated email from the git hooks/post-receive script.
mreynolds pushed a commit to branch 389-ds-base-1.3.8
in repository 389-ds-base.
commit 5aed2f4dd26b7bdb804eaf06d0a8106dc4915107
Author: Mark Reynolds <mreynolds@redhat.com>
Date: Sun May 27 10:48:55 2018 -0400
Ticket 49726 - DS only accepts RSA and Fortezza cipher families
Bug Description: Currently DS only accepts fortezza and RSA cipher families.
This prevents things like ECC certificates from being used.
Fix Description: Instead of hardcoding the cipher families, just grab the
current type and use it.
Also cleaned up code: removed unncessary "ifdefs", and switched
for loops to use size_t.
https://pagure.io/389-ds-base/issue/49726
Reviewed by: ?
(cherry picked from commit 27a16a068887e5b9fcab3b4507d58a18e6f1d1ec)
---
ldap/servers/slapd/ssl.c | 136 +++++++----------------------------------------
1 file changed, 20 insertions(+), 116 deletions(-)
diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c
index 36b09fd..b8eba2d 100644
--- a/ldap/servers/slapd/ssl.c
+++ b/ldap/servers/slapd/ssl.c
@@ -31,28 +31,11 @@
#include "fe.h"
#include "certdb.h"
-#if !defined(USE_OPENLDAP)
-#include "ldap_ssl.h"
-
No comments:
Post a Comment