From 53ef02baf80130a81d019e85c528fdc13af9db33 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Fri, 9 Sep 2022 15:48:24 +0800 Subject: [PATCH] Fix PROV_RC5_CTX's original structure name It looks like a typo when copy & pasting the structure from blowfish. Reviewed-by: Shane Lontis Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19186) --- providers/implementations/ciphers/cipher_rc5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/implementations/ciphers/cipher_rc5.h b/providers/implementations/ciphers/cipher_rc5.h index c630e7c87bf..421632f2ea1 100644 --- a/providers/implementations/ciphers/cipher_rc5.h +++ b/providers/implementations/ciphers/cipher_rc5.h @@ -10,7 +10,7 @@ #include #include "prov/ciphercommon.h" -typedef struct prov_blowfish_ctx_st { +typedef struct prov_rc5_ctx_st { PROV_CIPHER_CTX base; /* Must be first */ union { OSSL_UNION_ALIGN; -- 2.47.2