summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/header
AgeCommit message (Collapse)Author
2024-03-13openpgp: Add support for v6 OPS packets, inline-signed messages.Justus Winter
todo: - finish facade, at least set_last
2023-04-28openpgp: Add test for alignment of packet parser and heuristics.Justus Winter
- Fixes #1010.
2021-11-29Use range syntax.Nora Widdecke
- Use range syntac instad of manual comparisons. This is arguably better to read. - Found by clippy::manual_range_contains.
2021-08-27Convert markdown to intra-doc links.Nora Widdecke
- Apply cargo intraconv.
2021-04-09Lint: Use byte literals.Nora Widdecke
- https://rust-lang.github.io/rust-clippy/master/index.html#char_lit_as_u8
2020-12-08openpgp: Use parens for assert_send_and_sync!.Azul
2020-12-08openpgp: Ensure public types are Send and Sync.Azul
- See #627.
2020-10-26openpgp: Refactor some matches for legibilityIgor Matuszewski
2020-10-26openpgp: Use std::matches! instead of custom destructures_to macroIgor Matuszewski
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