Elichai Turkel
Elichai Turkel
Any news on that?
Yes, that's the crate :) Hmm maybe tonight I'll try to look at your code see if I can make a PR for that myself. Never wrote custom commands to...
Another thing, have you checked if this fails a CI? would be helpful if it is, otherwise it might only require exiting via `std::process::exit(1)`
So if it gives this error it means it's not vulnerable? or there's still a way to exploit the device? @r0hi7
I've implemented cSHAKE, and I have a few open questions before I can open a PR: 1. Do we want to expose `N` to the user? I think not, because...
Not sure if the reference is the right place for that, but I'd be curious to learn how the drop glue is implemented (ie the exact logic, and also what...
What about something like this: ``` #[repr(C, align(16))] struct f128 { a: [u8; 16] } ```
You can't do align+transparent
Hi, I've started working on exactly this but with a bit of a different mindset. My goal is to push rust safety's guarantees as much as possible. currently it stops...
I'm talking about a rust replacement for libc. I'm not planing of exposing FFI functions to C. The point is to have something like "libr" meaning all the libc functionality...