diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/cast/casttest.c | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/src/regress/lib/libcrypto/cast/casttest.c b/src/regress/lib/libcrypto/cast/casttest.c index c2e2d8bcd6..df72cafa4c 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.6 2023/08/20 22:32:15 tb Exp $ */ | 1 | /* $OpenBSD: casttest.c,v 1.7 2023/08/20 22:35:52 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 | * |
@@ -59,41 +59,42 @@ | |||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include <string.h> | 60 | #include <string.h> |
61 | #include <stdlib.h> | 61 | #include <stdlib.h> |
62 | #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_CAST is defined */ | ||
63 | 62 | ||
64 | #include <openssl/cast.h> | 63 | #include <openssl/cast.h> |
65 | 64 | ||
66 | static unsigned char k[16] = { | 65 | static const unsigned char k[16] = { |
67 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 66 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, |
68 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 67 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A, |
69 | }; | 68 | }; |
70 | 69 | ||
71 | static unsigned char in[8] = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}; | 70 | static const unsigned char in[8] = { |
71 | 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, | ||
72 | }; | ||
72 | 73 | ||
73 | static int k_len[3] = {16, 10, 5}; | 74 | static int k_len[3] = {16, 10, 5}; |
74 | static unsigned char c[3][8] = { | 75 | static const unsigned char c[3][8] = { |
75 | {0x23, 0x8B, 0x4F, 0xE5, 0x84, 0x7E, 0x44, 0xB2}, | 76 | {0x23, 0x8B, 0x4F, 0xE5, 0x84, 0x7E, 0x44, 0xB2}, |
76 | {0xEB, 0x6A, 0x71, 0x1A, 0x2C, 0x02, 0x27, 0x1B}, | 77 | {0xEB, 0x6A, 0x71, 0x1A, 0x2C, 0x02, 0x27, 0x1B}, |
77 | {0x7A, 0xC8, 0x16, 0xD1, 0x6E, 0x9B, 0x30, 0x2E}, | 78 | {0x7A, 0xC8, 0x16, 0xD1, 0x6E, 0x9B, 0x30, 0x2E}, |
78 | }; | 79 | }; |
79 | static unsigned char out[80]; | 80 | static unsigned char out[80]; |
80 | 81 | ||
81 | static unsigned char in_a[16] = { | 82 | static const unsigned char in_a[16] = { |
82 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 83 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, |
83 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 84 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A, |
84 | }; | 85 | }; |
85 | static unsigned char in_b[16] = { | 86 | static const unsigned char in_b[16] = { |
86 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 87 | 0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, |
87 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 88 | 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A, |
88 | }; | 89 | }; |
89 | 90 | ||
90 | static unsigned char c_a[16] = { | 91 | static const unsigned char c_a[16] = { |
91 | 0xEE, 0xA9, 0xD0, 0xA2, 0x49, 0xFD, 0x3B, 0xA6, | 92 | 0xEE, 0xA9, 0xD0, 0xA2, 0x49, 0xFD, 0x3B, 0xA6, |
92 | 0xB3, 0x43, 0x6F, 0xB8, 0x9D, 0x6D, 0xCA, 0x92 | 93 | 0xB3, 0x43, 0x6F, 0xB8, 0x9D, 0x6D, 0xCA, 0x92, |
93 | }; | 94 | }; |
94 | static unsigned char c_b[16] = { | 95 | static const unsigned char c_b[16] = { |
95 | 0xB2, 0xC9, 0x5E, 0xB0, 0x0C, 0x31, 0xAD, 0x71, | 96 | 0xB2, 0xC9, 0x5E, 0xB0, 0x0C, 0x31, 0xAD, 0x71, |
96 | 0x80, 0xAC, 0x05, 0xB8, 0xE8, 0x3D, 0x69, 0x6E | 97 | 0x80, 0xAC, 0x05, 0xB8, 0xE8, 0x3D, 0x69, 0x6E, |
97 | }; | 98 | }; |
98 | 99 | ||
99 | int | 100 | int |