Results 136 issues of dkg

This series cleans up a series of minor quibbles with the way that the RNP test suite interacts with GnuPG. A future GnuPG may choose responsible cryptographic primitives as a...

[RFC 9580's definition of Literal Data Packet](https://www.rfc-editor.org/rfc/rfc9580.html#section-5.9-3.4.2) says: > Text data MUST be encoded with UTF-8 (see [[RFC3629](https://www.rfc-editor.org/rfc/rfc9580.html#RFC3629)]) and stored with \\ text endings (that is, network-normal line endings). But...

module: cli

`sop verify` is meant to verify detached signatures. That is, it compares a text or binary data against a `SIGNATURES` object, with reference to a set of acceptable signers. `pgpainless-cli`...

module: cli

The SOP spec explicitly says: > If no valid signatures are found, `sop inline-verify` fails with `NO_SIGNATURE` and emits nothing on standard output. But `pgpainless-cli` emits the message on stdout...

module: cli

### Describe the issue See the attached XML file, which contains some text-based `` objects. [test.xml.txt](https://github.com/user-attachments/files/20527803/test.xml.txt) textual artwork like this: ``` └┬╴Root of the tree ├─╴Child A └─╴Child B ```...

bug
rpat
pdf

# Bug report ### Bug description: ```python #!/usr/bin/python3 from email.message import MIMEPart from email.policy import compat32 m = MIMEPart(policy=compat32) m.set_content(b'\x00'*100, 'image', 'phg') ``` This raises the following exception: ``` Traceback...

type-bug
stdlib
topic-email