Jack Lloyd
Jack Lloyd
The `check_public` function nominally checks "that the public key is well formed and has an exponent within acceptable bounds." https://github.com/RustCrypto/RSA/blob/master/src/key.rs#L642 But it also accepts even exponents, as long as they...
I noticed a problem in the url_decode function at https://github.com/bl4ck5un/Town-Crier/blob/master/src/Enclave/scrapers/scraper_utils.cpp#L91 in that the function does not verify the input chars of a hex escape are valid hex. As a result...
No idea how hard this would be to support but I figure it can't hurt to ask ;)
In KMIP it is possible to register a Template object as a distinct managed object, then request it by name as part of creating a new object using the `names`...
KMIP protocol supports batching operations, for example to execute the sequence locate/check/get in a single request. Is request batching supported by PyKMIP? I did not find any mention of this...
We shouldn't change anything right away but the Kyber designers are [making changes](https://github.com/pq-crystals/kyber/tree/standard) to their code to target the 'final' version of Kyber. So far these seem to include -...
Definitely looks to be some problem with the Ubuntu packaging, or something about the GHA image. It appears Clang 14 is installed but it is attempting to use libc++ 13
A lot of `build.h` is completely for internal use. It contains: * Version information (needs to be public) * `BOTAN_MP_WORD_BITS` * Installation paths * Path to the system cert bundle...
A bit of discussion at the end of #3807 about this. One question is how a deprecated module behaves. My take * If a deprecated module is being built, we...
For whatever reason we expose CRLs as a type, but they are barely usable. You can parse a CRL, but can't even properly examine it, verify it, etc. https://github.com/randombit/botan-rs/issues/95 Also...