diff options
author | mmcc <> | 2015-12-12 22:04:10 +0000 |
---|---|---|
committer | mmcc <> | 2015-12-12 22:04:10 +0000 |
commit | 19fc0e82718f08b8779e407033de7c5aa30745bc (patch) | |
tree | 6116f4b22c9919eb40b102ebbc6ebca6df4efda3 /src/lib/libssl/ssl_ciph.c | |
parent | 0ab61b6296a828200c9b9234a0b48cdf9c233b28 (diff) | |
download | openbsd-19fc0e82718f08b8779e407033de7c5aa30745bc.tar.gz openbsd-19fc0e82718f08b8779e407033de7c5aa30745bc.tar.bz2 openbsd-19fc0e82718f08b8779e407033de7c5aa30745bc.zip |
decipher comment. ok bcook@
Diffstat (limited to 'src/lib/libssl/ssl_ciph.c')
-rw-r--r-- | src/lib/libssl/ssl_ciph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c index 46f1697fec..05bfc47c1e 100644 --- a/src/lib/libssl/ssl_ciph.c +++ b/src/lib/libssl/ssl_ciph.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_ciph.c,v 1.83 2015/09/13 12:34:02 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_ciph.c,v 1.84 2015/12/12 22:04:10 mmcc Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1451,7 +1451,7 @@ ssl_create_cipher_list(const SSL_METHOD *ssl_method, | |||
1451 | ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); | 1451 | ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); |
1452 | ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); | 1452 | ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); |
1453 | 1453 | ||
1454 | /* RC4 is sort-of broken -- move the the end */ | 1454 | /* RC4 is sort of broken - move it to the end */ |
1455 | ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); | 1455 | ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); |
1456 | 1456 | ||
1457 | /* Now sort by symmetric encryption strength. The above ordering remains | 1457 | /* Now sort by symmetric encryption strength. The above ordering remains |