Tony Arcieri
Tony Arcieri
That's strange, because that error seems to indicate your local copy of `librpm_sys` is missing the `delMacro` function
@dralley sounds like a plausible solution
I haven't seen the thread safety of librpm documented well enough to know if an `RwLock` is sound. In fact, I'm not entirely certain the current `Mutex` is sound. Previously...
@korewaChino it would be great if you could split each of those checkbox items into separate PRs in order to make them easier to review, especially as they are all...
Also it would be really good if someone could take a look at reviving #36. You will almost certainly encounter problems very quickly until it's fixed.
One option would be to eliminate the user-supplied salt and use the static D-H public key as the HKDF salt. There aren't particularly compelling use cases for the salt otherwise:...
There are three relevant parameters: * `salt` and `info`: HKDF parameters * `nonce`: 8-byte nonce prefix used by STREAM They are presently: * `salt`: optional (per HKDF spec, with zeros...
Selection of which cipher to use can often come from a string parameter, such as a command-line option or data read from a file. I love types too, but there's...
No worries… seems like an idempotence bug on GitHub’s side
This seems like a problem with the `pcsc` crate. The `pcsc::Card` type has unsafe impls of `Send` and `Sync`: https://docs.rs/pcsc/2.7.0/src/pcsc/lib.rs.html#1639 We could potentially throw a mutex around it in the...