summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/partial_body.rs
AgeCommit message (Collapse)Author
2018-07-04openpgp: Hide the `writer::Stackable` trait.Justus Winter
- Do not expose the `writer::Stackable` trait in the API. Instead, use a tuple struct to wrap boxed objects of this kind. - Add and use `writer::Stack::finalize()` and `writer::Stack::finalize_all()` to pop one or all writers from the stack.
2018-06-19openpgp: Express log2 using the `u32::leading_zeros()` intrinsic.Justus Winter
2018-05-17openpgp: Remove Error::Io.Neal H. Walfield
- Failure can already encapsulate any Error; there is no need to specially wrap io::Error.
2018-04-26openpgp: Implement 'Serialize' for BodyLength.Justus Winter
2018-04-26openpgp: Implement streaming packet serialization.Justus Winter
2018-01-02openpgp: Preliminary serialization support.Neal H. Walfield
- Support serializing `CompressedData` and `Literal` packets.