On 17/05/16 20:46, Diego Biurrun wrote:
> ---
> libavutil/tests/blowfish.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavutil/tests/blowfish.c b/libavutil/tests/blowfish.c
> index acaab70..93e8998 100644
> --- a/libavutil/tests/blowfish.c
> +++ b/libavutil/tests/blowfish.c
> @@ -174,13 +174,13 @@ int main(void)
> av_blowfish_crypt_ecb(&ctx, &tmptext_l[i], &tmptext_r[i], 0);
> if (tmptext_l[i] != ciphertext_l[i] || tmptext_r[i] !=
> ciphertext_r[i]) {
> printf("Test encryption failed.\n");
> - return 1;
> + return 2;
> }
>
> av_blowfish_crypt_ecb(&ctx, &tmptext_l[i], &tmptext_r[i], 1);
> if (tmptext_l[i] != plaintext_l[i] || tmptext_r[i] !=
> plaintext_r[i]) {
> printf("Test decryption failed.\n");
> - return 1;
> + return 3;
> }
> }
> printf("Test encryption/decryption success.\n");
>
Possibly Ok. (would be nice to document the returned values in the wiki)
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel