change iterations from /64 to /128
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Steven Polley 2024-12-01 14:56:37 -07:00
parent 4b811dc8d7
commit c9c29f980d

View File

@ -24,7 +24,7 @@ import (
const ( const (
Size = 128 Size = 128
//Iterations = (1<<16 - 1) / 256 //Iterations = (1<<16 - 1) / 256
Iterations = (1<<16 - 1) / 64 Iterations = (1<<16 - 1) / 128
) )
var ( var (