Skip to content

Commit 8cf49db

Browse files
Merge pull request #34 from dgarske/rel-v4.7.0-async
Fix ARC4 macro name
2 parents fef8dae + 8c609c9 commit 8cf49db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wolfcrypt/src/port/cavium/cavium_nitrox.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ int NitroxAesGcmDecrypt(Aes* aes,
861861
#endif /* !NO_AES */
862862

863863

864-
#if !defined(NO_ARC4) && !defined(HAVE_CAVIUM_V)
864+
#if !defined(NO_RC4) && !defined(HAVE_CAVIUM_V)
865865
int NitroxArc4SetKey(Arc4* arc4, const byte* key, word32 length)
866866
{
867867
if (CspInitializeRc4(CAVIUM_BLOCKING, arc4->asyncDev.nitrox.contextHandle,
@@ -907,7 +907,7 @@ int NitroxArc4Process(Arc4* arc4, byte* out, const byte* in, word32 length)
907907

908908
return ret;
909909
}
910-
#endif /* !NO_ARC4 && !HAVE_CAVIUM_V */
910+
#endif /* !NO_RC4 && !HAVE_CAVIUM_V */
911911

912912

913913
#ifndef NO_DES3

0 commit comments

Comments
 (0)