summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/cast/casttest.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/cast/casttest.c b/src/regress/lib/libcrypto/cast/casttest.c
index 18d8e43cff..a97fd852bd 100644
--- a/src/regress/lib/libcrypto/cast/casttest.c
+++ b/src/regress/lib/libcrypto/cast/casttest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: casttest.c,v 1.4 2023/08/20 22:27:52 tb Exp $ */ 1/* $OpenBSD: casttest.c,v 1.5 2023/08/20 22:30:55 tb 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 *
@@ -68,13 +68,13 @@ static unsigned char k[16] = {
68 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A 68 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A
69}; 69};
70 70
71static unsigned char in[8] = { 0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF}; 71static unsigned char in[8] = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF};
72 72
73static int k_len[3] = {16,10,5}; 73static int k_len[3] = {16, 10, 5};
74static unsigned char c[3][8] = { 74static unsigned char c[3][8] = {
75 {0x23,0x8B,0x4F,0xE5,0x84,0x7E,0x44,0xB2}, 75 {0x23, 0x8B, 0x4F, 0xE5, 0x84, 0x7E, 0x44, 0xB2},
76 {0xEB,0x6A,0x71,0x1A,0x2C,0x02,0x27,0x1B}, 76 {0xEB, 0x6A, 0x71, 0x1A, 0x2C, 0x02, 0x27, 0x1B},
77 {0x7A,0xC8,0x16,0xD1,0x6E,0x9B,0x30,0x2E}, 77 {0x7A, 0xC8, 0x16, 0xD1, 0x6E, 0x9B, 0x30, 0x2E},
78}; 78};
79static unsigned char out[80]; 79static unsigned char out[80];
80 80