diff options
author | tedu <> | 2014-05-05 15:03:22 +0000 |
---|---|---|
committer | tedu <> | 2014-05-05 15:03:22 +0000 |
commit | 5b4326f23352be2e7084f2020795d8aa042c746f (patch) | |
tree | c342d9903092a19dfda173837629fd04c429eda9 /src/lib/libssl/d1_srvr.c | |
parent | 77dd1ca11ad22b323b27beea447edd1e35c3b24e (diff) | |
download | openbsd-5b4326f23352be2e7084f2020795d8aa042c746f.tar.gz openbsd-5b4326f23352be2e7084f2020795d8aa042c746f.tar.bz2 openbsd-5b4326f23352be2e7084f2020795d8aa042c746f.zip |
Remove SRP and Kerberos support from libssl. These are complex protocols
all on their own and we can't effectively maintain them without using them,
which we don't. If the need arises, the code can be resurrected.
Diffstat (limited to 'src/lib/libssl/d1_srvr.c')
-rw-r--r-- | src/lib/libssl/d1_srvr.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/libssl/d1_srvr.c b/src/lib/libssl/d1_srvr.c index 9995278a26..6183815a6d 100644 --- a/src/lib/libssl/d1_srvr.c +++ b/src/lib/libssl/d1_srvr.c | |||
@@ -429,9 +429,6 @@ dtls1_accept(SSL *s) | |||
429 | /* clear this, it may get reset by | 429 | /* clear this, it may get reset by |
430 | * send_server_key_exchange */ | 430 | * send_server_key_exchange */ |
431 | if ((s->options & SSL_OP_EPHEMERAL_RSA) | 431 | if ((s->options & SSL_OP_EPHEMERAL_RSA) |
432 | #ifndef OPENSSL_NO_KRB5 | ||
433 | && !(alg_k & SSL_kKRB5) | ||
434 | #endif /* OPENSSL_NO_KRB5 */ | ||
435 | ) | 432 | ) |
436 | /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key | 433 | /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key |
437 | * even when forbidden by protocol specs | 434 | * even when forbidden by protocol specs |