summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/unit
diff options
context:
space:
mode:
authorjsing <>2018-06-02 16:35:02 +0000
committerjsing <>2018-06-02 16:35:02 +0000
commitf6c1331fa2e89997363ab59225590a4adc2e8407 (patch)
tree070c868bd78890961301f73abdde431362ee0e06 /src/regress/lib/libssl/unit
parentcd126e741290f084546caeabdc425a5878244043 (diff)
downloadopenbsd-f6c1331fa2e89997363ab59225590a4adc2e8407.tar.gz
openbsd-f6c1331fa2e89997363ab59225590a4adc2e8407.tar.bz2
openbsd-f6c1331fa2e89997363ab59225590a4adc2e8407.zip
Update regress for DES cipher suite removal.
Diffstat (limited to 'src/regress/lib/libssl/unit')
-rw-r--r--src/regress/lib/libssl/unit/cipher_list.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/unit/cipher_list.c b/src/regress/lib/libssl/unit/cipher_list.c
index e19acaa3ea..70f547abd6 100644
--- a/src/regress/lib/libssl/unit/cipher_list.c
+++ b/src/regress/lib/libssl/unit/cipher_list.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cipher_list.c,v 1.8 2017/10/11 17:35:53 jsing Exp $ */ 1/* $OpenBSD: cipher_list.c,v 1.9 2018/06/02 16:35:02 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2015 Doug Hogan <doug@openbsd.org> 3 * Copyright (c) 2015 Doug Hogan <doug@openbsd.org>
4 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
@@ -49,7 +49,6 @@ static uint8_t cipher_bytes[] = {
49 0xcc, 0xaa, /* DHE-RSA-CHACHA20-POLY1305 */ 49 0xcc, 0xaa, /* DHE-RSA-CHACHA20-POLY1305 */
50 0x00, 0x9c, /* AES128-GCM-SHA256 */ 50 0x00, 0x9c, /* AES128-GCM-SHA256 */
51 0x00, 0x3d, /* AES256-SHA256 */ 51 0x00, 0x3d, /* AES256-SHA256 */
52 0x00, 0x09, /* DES-CBC-SHA */
53}; 52};
54 53
55static uint16_t cipher_values[] = { 54static uint16_t cipher_values[] = {
@@ -58,7 +57,6 @@ static uint16_t cipher_values[] = {
58 0xccaa, /* DHE-RSA-CHACHA20-POLY1305 */ 57 0xccaa, /* DHE-RSA-CHACHA20-POLY1305 */
59 0x009c, /* AES128-GCM-SHA256 */ 58 0x009c, /* AES128-GCM-SHA256 */
60 0x003d, /* AES256-SHA256 */ 59 0x003d, /* AES256-SHA256 */
61 0x0009, /* DES-CBC-SHA */
62}; 60};
63 61
64#define N_CIPHERS (sizeof(cipher_bytes) / 2) 62#define N_CIPHERS (sizeof(cipher_bytes) / 2)