drounds
int SipHash_Init(SIPHASH *ctx, const unsigned char *k, int crounds, int drounds)
if (drounds == 0)
drounds = SIPHASH_D_ROUNDS;
ctx->drounds = drounds;
for (i = 0; i < ctx->drounds; ++i)
for (i = 0; i < ctx->drounds; ++i)
int crounds, int drounds);
unsigned int drounds;
ret = SipHash_Init(&ctx->siphash, key, crounds(ctx), drounds(ctx));
&& !OSSL_PARAM_set_uint(p, drounds(ctx)))
&& !OSSL_PARAM_get_uint(p, &ctx->drounds))
unsigned int crounds, drounds;
return ctx->drounds != 0 ? ctx->drounds : SIPHASH_D_ROUNDS;