Results 174 issues of daxpedda

**Is your feature request related to a problem? Please describe.** It's not really a problem at the moment, because no stable browser has WebGPU support turned on by default, yet....

type: enhancement
help wanted
area: api
api: webgpu

This allows hosting a HTTP and HTTPS server on the same port. The main use-case is upgrading a connection to HTTPS automatically when connecting to e.g. "localhost:3030", as browsers connect...

**Is your feature request related to a particular use-case?** I would like to add checking `CHANGELOG.md` for spelling errors in the CI too. **Describe the solution you'd like to implement/see...

good first issue :beginner:
internal :gear:

According to the discussion in https://github.com/hermitcore/uhyve/issues/30#issuecomment-792037267 this might still be impossible or very difficult at least. It would make it much easier to host multiple "applications" in the same unikernel...

enhancement

Nebari should expand it's testing suite to include fuzz testing. Personally I don't have any experience with it, but some pointers here: - [cargo-fuzz](https://crates.io/crates/cargo-fuzz) is commonly used for this task,...

help wanted

While working on [voprf](https://github.com/novifinancial/voprf) and [opaque-ke](https://github.com/novifinancial/opaque-ke) I noticed that a lot of implementations and traits could be removed if curve25519-dalek would support necessary traits from elliptic-curves, like [`Curve`](https://docs.rs/elliptic-curve/latest/elliptic_curve/trait.Curve.html) and [`ProjectiveArithmetic`](https://docs.rs/elliptic-curve/latest/elliptic_curve/trait.ProjectiveArithmetic.html)....

Depends on https://github.com/RustCrypto/traits/pull/1024.

See https://github.com/RustCrypto/password-hashes/pull/313. Sometimes a very specific output size is expected. Any bike-shedding is very welcome.

password-hash

Apparently this was need for https://github.com/RustCrypto/elliptic-curves/pull/600. It will also be necessary for P-512. I assume this is a breaking change?

elliptic-curve
breaking

I noticed that an enum like this: ```rust #[derive(Zeroize)] enum Test { A = 0, B, } ``` doesn't work like intended, it basically does nothing on `zeroize()`. How bad...