This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jap
Recipients barry, jap, r.david.murray
Date 2019-12-24.15:24:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577201055.68.0.886293230442.issue39131@roundup.psfhosted.org>
In-reply-to
Content
When creating multipart/signed messages, this currently require two serialisation passes: once to extract the flattened contents to be signed, and once to actually serialise the message.

The PR this ticket will be linked to contains a new class, MIMEMultipartSigned, which can be instantiated with a signer function that can perform the signing while serialising, reducing this to only once.

Besides, this ensures that the signed contents cannot changed between signing and outputting.

Patch is against py3.8
History
Date User Action Args
2019-12-24 15:24:15japsetrecipients: + jap, barry, r.david.murray
2019-12-24 15:24:15japsetmessageid: <1577201055.68.0.886293230442.issue39131@roundup.psfhosted.org>
2019-12-24 15:24:15japlinkissue39131 messages
2019-12-24 15:24:15japcreate