summaryrefslogtreecommitdiff
path: root/providers
diff options
context:
space:
mode:
authorPaul Yang <kaishen.yy@antfin.com>2022-09-09 15:48:24 +0800
committerTomas Mraz <tomas@openssl.org>2022-09-12 08:38:48 +0200
commit53ef02baf80130a81d019e85c528fdc13af9db33 (patch)
tree6754db5841f5724da3164e1582f79eab59441153 /providers
parentce41a53dc647184119876fee53afef66be6c7f4b (diff)
downloadopenssl-new-53ef02baf80130a81d019e85c528fdc13af9db33.tar.gz
Fix PROV_RC5_CTX's original structure name
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)
Diffstat (limited to 'providers')
-rw-r--r--providers/implementations/ciphers/cipher_rc5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_rc5.h b/providers/implementations/ciphers/cipher_rc5.h
index c630e7c87b..421632f2ea 100644
--- a/providers/implementations/ciphers/cipher_rc5.h
+++ b/providers/implementations/ciphers/cipher_rc5.h
@@ -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;