mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-20 00:10:59 -05:00
ITS#7877 assume gnutls is at least 2.12.0
This commit is contained in:
parent
485b24ca7b
commit
345173e928
1 changed files with 0 additions and 22 deletions
|
|
@ -272,7 +272,6 @@ tlsg_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
|
|||
* then we have to build the cert chain.
|
||||
*/
|
||||
if ( max == 1 && !gnutls_x509_crt_check_issuer( certs[0], certs[0] )) {
|
||||
#if GNUTLS_VERSION_NUMBER >= 0x020c00
|
||||
unsigned int i;
|
||||
for ( i = 1; i<VERIFY_DEPTH; i++ ) {
|
||||
if ( gnutls_certificate_get_issuer( ctx->cred, certs[i-1], &certs[i], 0 ))
|
||||
|
|
@ -282,27 +281,6 @@ tlsg_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
|
|||
if ( gnutls_x509_crt_check_issuer( certs[i], certs[i] ))
|
||||
break;
|
||||
}
|
||||
#else
|
||||
gnutls_x509_crt_t *cas;
|
||||
unsigned int i, j, ncas;
|
||||
|
||||
gnutls_certificate_get_x509_cas( ctx->cred, &cas, &ncas );
|
||||
for ( i = 1; i<VERIFY_DEPTH; i++ ) {
|
||||
for ( j = 0; j<ncas; j++ ) {
|
||||
if ( gnutls_x509_crt_check_issuer( certs[i-1], cas[j] )) {
|
||||
certs[i] = cas[j];
|
||||
max++;
|
||||
/* If this CA is self-signed, we're done */
|
||||
if ( gnutls_x509_crt_check_issuer( cas[j], cas[j] ))
|
||||
j = ncas;
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* only continue if we found a CA and it was not self-signed */
|
||||
if ( j == ncas )
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
rc = gnutls_certificate_set_x509_key( ctx->cred, certs, max, key );
|
||||
if ( rc ) return -1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue