Results 684 comments of daxpedda

So this has to build on https://github.com/RustCrypto/traits/pull/1024 now. Considering this will be a breaking change, what's the solution here? I could just copy-paste the OSSWU code here, like we did...

We can mark Balloon (and also fix the typo) as done, see https://crates.io/crates/balloon-hash.

> ```rust > OutputSize { expected: Ordering, size: usize } > ``` I wasn't sure how you mean that, I kinda turned it around, the `usize` holds the `expect`ed size...

I'm pretty sure this CI failure has nothing to do with this PR, right?

I tried restarting CI, but got stuck at "workflow awaiting approval" again.

> I agree with the idea that we should add an artificial delay on all responses, perhaps self-tuning based on measuring the average response time to looking up a user...

Does this not already help: [`Config`](https://github.com/khonsulabs/custodian/blob/863018b05f7b544bbfe094e59648b1c2ed6cd0e2/password/src/config.rs#L19-L26)? You can ask every `ServerFile` what cipher suite it's using: [`ServerFile::config()`](https://github.com/khonsulabs/custodian/blob/863018b05f7b544bbfe094e59648b1c2ed6cd0e2/password/src/server.rs#L152-L156).

This might be a QUIC timeout thing, tell me if it's that, then I can expose a setting that disables it or let's you set whatever you like. If you...

https://github.com/daxpedda/http-symlink-repro `http -p 20000 web` I can visit http://localhost:20000/index.html on all OSs. I can visit http://localhost:20000/assets/test.html on Linux and MacOS, but not on Windows.

So creating Windows shortcuts through the context menu doesn't work, because it uses symbolic links. The command you used uses directory junctions, first time I heard about this concept. But...