bryant

Results 16 comments of bryant

Inlined reply. On Apr 28, 2018 10:17 PM, "Josh Holmer" wrote: > > To be secure, a salt is required to be universally unique across all passwords everywhere. Could you...

Unless I've misunderstood, `rand` would not ensure universal uniqueness.

Have any of you even tried the benchmarks? Take a look at the README. We've already for quite some time been competitive with the C impl (a bit faster, even),...

without std::vec, what would block::Matrix look like?

> Does it need to be resizable? how else to deal with adjustable memory cost at runtime?

precisely how would this allocation take place? On Oct 10, 2016 3:21 AM, "Evrey" [email protected] wrote: > Well, doesn't the amount of memory to allocate solely depend on the >...

So I discovered this afternoon that codegenning AVX is a simple matter of: ``` bash $ export RUSTFLAGS='-C target-feature=+avx' $ cargo clean $ cargo bench --features simd $ objdump -d...

> It seems the reference implementation doesn't take the advantage of AVX either. Even if compiled with -march=nocona, it is still much faster. In fact, the ref-impl does try to...

And on the topic of `go-faster`, would you mind re-running the benches with `+avx` and `--features simd` on that branch? The numbers I'm getting are quite favorable now: ``` bash...

it's arbitrary data that one could include with the password and salt to compute the hash value. its value is entirely up to you. i think the phase, "optional associated...