[email protected] writes:

> diff --git a/examples/hogweed-benchmark.c b/examples/hogweed-benchmark.c
> index 11393df04c81..69315211a0cc 100644
> --- a/examples/hogweed-benchmark.c
> +++ b/examples/hogweed-benchmark.c
> @@ -771,12 +771,12 @@ bench_curve_init (unsigned size)
>      case 255:
>        ctx->mul = curve25519_mul;
>        ctx->mul_g = curve25519_mul_g;
> -      knuth_lfib_random (&lfib, sizeof(CURVE25519_SIZE), ctx->s);
> +      knuth_lfib_random (&lfib, CURVE25519_SIZE, ctx->s);
>        break;
>      case 448:
>        ctx->mul = curve448_mul;
>        ctx->mul_g = curve448_mul_g;
> -      knuth_lfib_random (&lfib, sizeof(CURVE448_SIZE), ctx->s);
> +      knuth_lfib_random (&lfib, CURVE448_SIZE, ctx->s);
>        break;
>      default:
>        abort ();

Thanks, fix applied.

Regards,
/Niels

-- 
Niels Möller. PGP-encrypted email is preferred. Keyid 368C6677.
Internet email is subject to wholesale government surveillance.
_______________________________________________
nettle-bugs mailing list
[email protected]
http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs

Reply via email to