Trevor Taubitz

Results 2 issues of Trevor Taubitz

In my Go project, I have some go generate directives that look like this: ```go //go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 -generate ``` Unfortunately, this bypasses bingo's installation and pinning process. After...

enhancement
help wanted

In the [PRNG exercise](https://cryptobook.nakov.com/secure-random-generators/exercises-pseudo-random-generator), the solution is based on the following calculation, where `n` is the iteration number: ``` 1 + HMAC-SHA256(n, seed) % 10 ``` However, n can be...