]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix PROV_RC5_CTX's original structure name
authorPaul Yang <kaishen.yy@antfin.com>
Fri, 9 Sep 2022 07:48:24 +0000 (15:48 +0800)
committerTomas Mraz <tomas@openssl.org>
Mon, 12 Sep 2022 06:38:48 +0000 (08:38 +0200)
It looks like a typo when copy & pasting the structure from blowfish.

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19186)

providers/implementations/ciphers/cipher_rc5.h

index c630e7c87bf90574fd63506d0504648c0ed2381b..421632f2ea1e380b8c09d928d41471678adbe33c 100644 (file)
@@ -10,7 +10,7 @@
 #include <openssl/rc5.h>
 #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;