Jan Beulich writes ("[PATCH][4.15] crypto: adjust rijndaelEncrypt() prototype
for gcc11"):
> Clearly neither the 1st nor the 2nd argument have a "source size" of 0.
>
> --- a/xen/include/crypto/rijndael.h
> +++ b/xen/include/crypto/rijndael.h
> @@ -52,7 +52,7 @@
>
> int rijndaelKeySetupEnc(unsigned int [], const unsigned char [], int);
> int rijndaelKeySetupDec(unsigned int [], const unsigned char [], int);
> -void rijndaelEncrypt(const unsigned int [], int, const unsigned char [],
> - unsigned char []);
> +void rijndaelEncrypt(const unsigned int [], int, const unsigned char [16],
> + unsigned char [16]);
>
> #endif /* __RIJNDAEL_H */
Release-Acked-by: Ian Jackson <[email protected]>