diff options
author | tb <> | 2024-01-07 16:18:18 +0000 |
---|---|---|
committer | tb <> | 2024-01-07 16:18:18 +0000 |
commit | e585d87ddb7f7d7ff614655f1da0f86cbb51671a (patch) | |
tree | 6ab575c5c729bdf224674fd67b7f9c9ca3d5d4f8 /src | |
parent | 8fa897fcd99c8c7e54dbf8fb8c21cb613997d5fb (diff) | |
download | openbsd-e585d87ddb7f7d7ff614655f1da0f86cbb51671a.tar.gz openbsd-e585d87ddb7f7d7ff614655f1da0f86cbb51671a.tar.bz2 openbsd-e585d87ddb7f7d7ff614655f1da0f86cbb51671a.zip |
const-correct r4_hmac_md5_cipher
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/evp/e_rc4_hmac_md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/e_rc4_hmac_md5.c b/src/lib/libcrypto/evp/e_rc4_hmac_md5.c index 5701aeefc6..420b945a80 100644 --- a/src/lib/libcrypto/evp/e_rc4_hmac_md5.c +++ b/src/lib/libcrypto/evp/e_rc4_hmac_md5.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: e_rc4_hmac_md5.c,v 1.14 2024/01/07 15:42:57 tb Exp $ */ | 1 | /* $OpenBSD: e_rc4_hmac_md5.c,v 1.15 2024/01/07 16:18:18 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2011 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2011 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -281,7 +281,7 @@ rc4_hmac_md5_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr) | |||
281 | } | 281 | } |
282 | } | 282 | } |
283 | 283 | ||
284 | static EVP_CIPHER r4_hmac_md5_cipher = { | 284 | static const EVP_CIPHER r4_hmac_md5_cipher = { |
285 | #ifdef NID_rc4_hmac_md5 | 285 | #ifdef NID_rc4_hmac_md5 |
286 | .nid = NID_rc4_hmac_md5, | 286 | .nid = NID_rc4_hmac_md5, |
287 | #else | 287 | #else |