Make prototype for rijndaelEncrypt match function including the bounds.
authordtucker <dtucker@openbsd.org>
Tue, 28 Sep 2021 11:14:50 +0000 (11:14 +0000)
committerdtucker <dtucker@openbsd.org>
Tue, 28 Sep 2021 11:14:50 +0000 (11:14 +0000)
Fixes error in portable where GCC>=11 takes notice of the bounds.
ok deraadt@

usr.bin/ssh/rijndael.h

index 8e6258a..e949adf 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rijndael.h,v 1.14 2014/04/29 15:42:07 markus Exp $ */
+/*     $OpenBSD: rijndael.h,v 1.15 2021/09/28 11:14:50 dtucker Exp $ */
 
 /**
  * rijndael-alg-fst.h
@@ -38,7 +38,6 @@ typedef unsigned short        u16;
 typedef unsigned int   u32;
 
 int    rijndaelKeySetupEnc(unsigned int [], const unsigned char [], int);
-void   rijndaelEncrypt(const unsigned int [], int, const unsigned char [],
-           unsigned char []);
+void   rijndaelEncrypt(const unsigned int [], int, const u8 [16], u8 [16]);
 
 #endif /* _PRIVATE_RIJNDAEL_H */