X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/61bd904b61ef893246791746517ef7a38ed732db..1da1ed6a5815deef6c33d74f1eb3c856793df3e5:/symm/chacha.c diff --git a/symm/chacha.c b/symm/chacha.c index 80a84c17..0c8aa003 100644 --- a/symm/chacha.c +++ b/symm/chacha.c @@ -695,7 +695,7 @@ static void grdestroy(grand *r) static const grand_ops grops_rand_##rr = { \ "chacha" #rr, GRAND_CRYPTO, 0, \ grmisc, grdestroy, grword, \ - grbyte, grword, grand_range, grfill \ + grbyte, grword, grand_defaultrange, grfill \ }; \ \ grand *chacha##rr##_rand(const void *k, size_t ksz, const void *n) \ @@ -737,7 +737,7 @@ CHACHA_VARS(DEFGRAND) static const grand_ops grxops_rand_##rr = { \ "xchacha" #rr, GRAND_CRYPTO, 0, \ grmisc, grxdestroy_##rr, grword, \ - grbyte, grword, grand_range, grfill \ + grbyte, grword, grand_defaultrange, grfill \ }; \ \ grand *xchacha##rr##_rand(const void *k, size_t ksz, const void *n) \