Michael Schlenker
Michael Schlenker
The docs suggest to only use encrypt_key/validate_key options, instead of the secret option. secret triggers the use of the SignedCookie implementation, which HMAC's the data, while encrypt_key / validate_key just...
Add the set_ciphersuites API to set TLS 1.3 ciphersuites properly. See: https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_ciphersuites.html https://wiki.openssl.org/index.php/TLS1.3#Ciphersuites
The pyopenssl API for CRLs is kind of weird. Case 1: crl.get_revoked() returns None for empty CRLs The natural use case for this is to iterate over the revoked objects...
A proof of concept SASL / GSSAPI client authentication for ldaptor. At the moment it is just `ldaptor-search` upgraded to do SASL-GSSAPI when asked to. If you are in a...
I tried to validate a SBOM with a component containing a publisher entry. This should be valid, according to: https://cyclonedx.org/docs/1.4/xml/#type_component ```xml example.app Example Publisher 15.5 ``` But running it through...
Is this just asking to get a nicer C-level access to the already available 'array startsearch', 'array nextelement' etc., which is currently only accessible via `Tcl_eval`? Those are mentioned as...
The cyclonedx-cli tool creates an empty ```` node inside the ```` node, when no such reference exists in the input data. How to reproduce: Example BOM 1 with a patch...
- Use Tcl equivalent of the real C-style arrays (lists), not the associative hashmaps/variable collections listed as array. - Brace all expressions (Tcl performance 101), otherwise the performance is often...
Problem ===== I try to merge a SBOM created via https://github.com/CycloneDX/cyclonedx-node-npm to another SBOM. The NPM SBOM contains extra properties for the toplevel components and subcomponents e.g. it looks like...
Take a key for P-256 with x=24014791858128669844935517199947753409425201576699879295797457599559336031L The `jwkest.long2intarr()` method turns that into an array of just 31 instead of 32 octets, which is too short for the base64 encoded...