Jens Alfke

Results 104 issues of Jens Alfke

The New() function takes filesystem paths to the certificate and private key files. That's too limiting — the server may not have filesystem storage available, or the private key may...

There seems to be a problem with libmdbx building on Windows in a Github Action. I filed https://github.com/erthink/libmdbx/issues/138 . Until then I'll disable Windows in CI.

The key/value API is awkward because keys and values can be anything. Data and DataOut help, but aren't very safe. It would be nice to have generic KEY and VALUE...

MDBX_cursor supports writing to the collection, if it's in a write-transaction. Should support this (with a `WriteCursor` subclass.)

The current macOS x86-64 machine code for INTERP is: ``` 0000000100011950 pushq %rbx 0000000100011951 movq %rdi, %rbx 0000000100011954 movq (%rdi), %rax 0000000100011957 leaq 0x8(%rax), %rdi 000000010001195b callq *(%rax) 000000010001195d testq...

The [macro](https://jinja.palletsprojects.com/en/3.0.x/templates/#macros) feature in Jinja would be super great to have. I'm finding myself repeating lots of small snippets in my templates, things for which `include` in't well suited (too...

enhancement

Inja doesn't [seem to] have a way to escape HTML entities in a text substitution. So in any situation where you're displaying a user-provided string in a template, like `{{commentText}}`,...

Bamboo uses 512-bit (64-byte) Blake2b hashes. My gut feeling\* is that this is bigger than necessary. Using 256-bit hashes would reduce an encoded entry by about 75 bytes on average...

It occurred to me that, if an entry's signature were _not_ included in the computation of its digest, then a peer could in most cases forget about the signature of...

There's an inconsistency between the verification rules, and the definition of the certificate pool. My guess is that the verification rule is a bit too strict: >* authenticity has been...