summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/header
AgeCommit message (Collapse)Author
2020-05-27openpgp: Improve documentation for packet::ctb.Neal H. Walfield
- See #470.
2020-05-20openpgp: Make field private, provide an accessorNeal H. Walfield
- Don't export `CTBOld::length_type`. Provide a getter, `CTBOld::length_type`, instead.
2020-05-20openpgp: Improve documentation for packet::header.Neal H. Walfield
- See #470.
2020-04-03openpgp: Convert `CTB::from_ptag` to `TryFrom<u8>`Wiktor Kwapisiewicz
2020-03-26Remove redundant field names.Wiktor Kwapisiewicz
2020-03-09Switch from failure to anyhow.Justus Winter
- Use the anyhow crate instead of failure to implement the dynamic side of our error handling. anyhow::Error derefs to dyn std::error::Error, allowing better interoperability with other stdlib-based error handling libraries. - Fixes #444.
2020-02-24openpgp: Drop XXX.Justus Winter
- Error::MalformedPacket seems appropriate.
2020-01-07Fix broken links in the documentation.Justus Winter
2020-01-06openpgp: Move packet::header::ctb::* into header.Justus Winter
2020-01-06openpgp: Fix link.Justus Winter
2019-10-27Fix more spelling errors caught by codespellDaniel Kahn Gillmor
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
2019-09-27openpgp: Clean up deprecated range syntaxDaniel Silverstone
The `...` syntax is deprecated in favour of `..=` since 1.26 and is an idiom lint in the 2018 edition. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2019-09-11openpgp: Move packet::BodyLength to packet::header.Justus Winter
- Move the parser to the parse module.
2019-09-11openpgp: Move the ctb module to the header module.Justus Winter
2019-09-11openpgp: Move header module to subdirectory.Justus Winter