summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse.rs
AgeCommit message (Expand)Author
2021-11-04openpgp: Use XXH3 to hash packet bodies.Justus Winter
2021-09-30Allow if conditions that use complex codeLars Wirzenius
2021-09-30Avoid calling .map with function returning the unit typeLars Wirzenius
2021-09-30Join nested if statements with logical and into one statementLars Wirzenius
2021-09-30Use Result::map or ::map_err instead of ::and_thenLars Wirzenius
2021-09-30Avoid naming field setting it from variable of the same nameLars Wirzenius
2021-09-30Drop unnecessary mut when passing a reference to a functionLars Wirzenius
2021-09-30Improve error message for a malformed packetLars Wirzenius
2021-09-30Use a clearer and shorter += or /= operationLars Wirzenius
2021-09-21Avoid matching on &Foo, when a plain Foo pattern worksLars Wirzenius
2021-09-08openpgp: Constrain AEAD chunk sizes.Justus Winter
2021-08-27ffi, openpgp: Cleanup links after cargo intraconv.Nora Widdecke
2021-08-27Convert markdown to intra-doc links.Nora Widdecke
2021-05-27openpgp: Fix crash.Justus Winter
2021-05-20openpgp: Fix CertParser to return errors in the right order.Neal H. Walfield
2021-04-26openpgp: Improve tracing.Justus Winter
2021-04-26openpgp: Expose support for attested certifications.Justus Winter
2021-04-20lint: Remove unnecessary trailing semicolons.Nora Widdecke
2021-04-09Lint: Remove unecessary imports.Nora Widdecke
2021-04-09Lint: Use next instead of nth(0).Nora Widdecke
2021-04-09Lint: Use is_empty().Nora Widdecke
2021-04-09Lint: Remove redundant returns.Nora Widdecke
2021-04-09Lint: Use matches! macro.Nora Widdecke
2021-04-09Lint: Remove redundant closures.Nora Widdecke
2021-04-09Lint: Remove unnecessary conversions.Nora Widdecke
2021-03-25openpgp: Only record fields if we consume the data.Justus Winter
2021-02-24openpgp: Verify messages using the Cleartext Signature Framework.Justus Winter
2021-02-17Revert "openpgp: Only drop unread data from the top buffered reader."Justus Winter
2020-12-14openpgp: Fix crash in the packet parser.Justus Winter
2020-12-10openpgp: Add remaining assert_send_and_sync! calls.Azul
2020-12-10buffered-reader: Require Cookies to be Send and Sync.Azul
2020-12-08openpgp: Use parens for assert_send_and_sync!.Azul
2020-12-08openpgp: Add assert_send_and_sync! for more types.Azul
2020-12-07openpgp: Drop hash::Context in favor of a pub trait hash::Digest.Justus Winter
2020-11-12openpgp: Make crypto::Hash::digest fallible.Justus Winter
2020-11-09buffered_reader: Move dump to buffered_reader.Nora Widdecke
2020-11-09buffered-reader: Add Debug trait bound to Cookie.Nora Widdecke
2020-11-06openpgp: Use non_exhaustive attribute.Nora Widdecke
2020-10-26openpgp: Use std::matches! instead of custom destructures_to macroIgor Matuszewski
2020-10-22openpgp: Introduce symbol for the magic value.Justus Winter
2020-10-20openpgp: Pop the armor filter off the stack after parsing.Justus Winter
2020-10-20openpgp: Improve tracing.Justus Winter
2020-10-20openpgp: Typo.Justus Winter
2020-10-20openpgp: Return the reader in PacketParserEOF.Justus Winter
2020-10-20openpgp: Make struct Cookie public.Justus Winter
2020-10-16openpgp: Fix crash in SKESK::parse.Justus Winter
2020-10-06openpgp: Support encrypted keys protected by two octet sum.Justus Winter
2020-10-06openpgp: Use common SecretKeyMaterial::parse_with_checksum.Justus Winter
2020-10-06openpgp: Move checksum processing to SecretKeyMaterial::_parse.Justus Winter
2020-10-02openpgp: Make SubpacketArea::new fallible.Justus Winter