summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-08-05 17:08:02 +0000
committertb <>2022-08-05 17:08:02 +0000
commit026b9e1323f520770df79024834517c63830ebb8 (patch)
tree5c766a56f4b4ee7638373040d7d102a6008585f5
parentbce090b40d9d78adf9b62d7d0f7793eb7d242aaf (diff)
downloadopenbsd-026b9e1323f520770df79024834517c63830ebb8.tar.gz
openbsd-026b9e1323f520770df79024834517c63830ebb8.tar.bz2
openbsd-026b9e1323f520770df79024834517c63830ebb8.zip
Make the bogokey[] global static const.
-rw-r--r--src/regress/lib/libssl/tlsext/tlsexttest.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/regress/lib/libssl/tlsext/tlsexttest.c b/src/regress/lib/libssl/tlsext/tlsexttest.c
index a224623881..ac6799a721 100644
--- a/src/regress/lib/libssl/tlsext/tlsexttest.c
+++ b/src/regress/lib/libssl/tlsext/tlsexttest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tlsexttest.c,v 1.71 2022/08/05 17:06:17 tb Exp $ */ 1/* $OpenBSD: tlsexttest.c,v 1.72 2022/08/05 17:08:02 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> 4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org>
@@ -3708,6 +3708,13 @@ test_tlsext_keyshare_client(void)
3708 return (failure); 3708 return (failure);
3709} 3709}
3710 3710
3711static const uint8_t bogokey[] = {
3712 0xe5, 0xe8, 0x5a, 0xb9, 0x7e, 0x12, 0x62, 0xe3,
3713 0xd8, 0x7f, 0x6e, 0x3c, 0xec, 0xa6, 0x8b, 0x99,
3714 0x45, 0x77, 0x8e, 0x11, 0xb3, 0xb9, 0x12, 0xb6,
3715 0xbe, 0x35, 0xca, 0x51, 0x76, 0x1e, 0xe8, 0x22,
3716};
3717
3711static int 3718static int
3712test_tlsext_keyshare_server(void) 3719test_tlsext_keyshare_server(void)
3713{ 3720{
@@ -3722,12 +3729,6 @@ test_tlsext_keyshare_server(void)
3722 int alert; 3729 int alert;
3723 CBB cbb; 3730 CBB cbb;
3724 CBS cbs; 3731 CBS cbs;
3725 uint8_t bogokey[] = {
3726 0xe5, 0xe8, 0x5a, 0xb9, 0x7e, 0x12, 0x62, 0xe3,
3727 0xd8, 0x7f, 0x6e, 0x3c, 0xec, 0xa6, 0x8b, 0x99,
3728 0x45, 0x77, 0x8e, 0x11, 0xb3, 0xb9, 0x12, 0xb6,
3729 0xbe, 0x35, 0xca, 0x51, 0x76, 0x1e, 0xe8, 0x22,
3730 };
3731 3732
3732 failure = 1; 3733 failure = 1;
3733 3734