Justus Winter
Justus Winter
We produce manual pages using roff-rs, then render them as HTML for our web site. I have noticed that apostrophes in contractions and marking of possessive cases area not present...
It'd be nice to make that configurable. Thanks!
I don't know how much the API diverged, and how much work that would be. If we had a gosop to test x/crypto/openpgp with, we could put it into the...
```sh $ gosop sign foo6
Seems it is replaced with the unicode REPLACEMENT CHARACTER suggesting a superfluous conversion to a string somewhere: ``` % echo -ne 'what is\xff\xff\xff\xff\xffhappening' | sqop encrypt alice-secret.pgp | gosop decrypt...
### Description I tried to export a document containing a table to markdown. Unfortunately, the table is flattened in the markdown, like so: ```md 00 01 10 11 ``` In...
See https://github.com/OpenPGP/openpgp.org/pull/106#issuecomment-1984560727
### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version 4.5.20 ### Describe your...
I think that this is unfortunate because any downstream user now has to resort to conditional compilation (and directly depend on `botan-sys` in order to use the `botan_ffi_YYYYMMDD` features) if...
Cipher::_update_into asserts that all input has been consumed, but that is not necessarily the case
Consider: ``` Testing IDEA/CBC [openpgp/src/crypto/symmetric.rs:524:13] (self.scratch[..whole_blocks].len(), &buf[..whole_blocks].len()) = ( 5152, 5152, ) thread 'crypto::symmetric::tests::roundtrip' panicked at /home/teythoon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/botan-0.11.1/src/cipher.rs:294:9: assertion `left == right` failed left: 5120 right: 5152 stack backtrace: 0: rust_begin_unwind...