summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse
AgeCommit message (Expand)Author
2021-09-30Join nested if statements with logical and into one statementLars Wirzenius
2021-09-30Avoid naming field setting it from variable of the same nameLars Wirzenius
2021-09-30Use std::mem::take instead of std::mem::replace, for clarityLars Wirzenius
2021-09-30Drop unnecessary lifetime notationsLars Wirzenius
2021-09-28openpgp: Improve tests.Justus Winter
2021-09-15openpgp: Avoid creating unused borrows.Justus Winter
2021-08-27openpgp: Correct links.Nora Widdecke
2021-08-27ffi, openpgp: Cleanup links after cargo intraconv.Nora Widdecke
2021-08-27Convert markdown to intra-doc links.Nora Widdecke
2021-06-07openpgp: Add decryption test vectors.Justus Winter
2021-04-20lint: Remove unnecessary trailing semicolons.Nora Widdecke
2021-04-09Lint: Do not .clone a Copy type.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: Remove redundant closures.Nora Widdecke
2021-04-09Lint: Remove unnecessary conversions.Nora Widdecke
2021-03-17openpgp: Fix handling of malformed MDC packets.Justus Winter
2021-03-17openpgp: Rename keys to certs to avoid confusion.Justus Winter
2021-03-17openpgp: Ignore marker packets when verifying detached sigs.Justus Winter
2021-03-17openpgp: Test that marker packets are ignored when verifying.Justus Winter
2021-03-05openpgp: Fix panic when verifying signatures.Wiktor Kwapisiewicz
2021-03-02openpgp, autocrypt, guide: Make tests more robust.Justus Winter
2021-02-24openpgp: Verify messages using the Cleartext Signature Framework.Justus Winter
2021-02-24openpgp: Rework certificate lookup in the streaming decryptor.Justus Winter
2021-02-17openpgp: Improve tracing.Justus Winter
2021-02-17openpgp: Generalize test.Justus Winter
2021-02-09openpgp: Fix crash on malformed input.Justus Winter
2020-12-11openpgp: Pass the hash algo's security reqs to Policy::signature.Neal H. Walfield
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: Make unnamed iterators Send + Sync.Justus Winter
2020-12-08openpgp: Add assert_send_and_sync! for more types.Azul
2020-12-08openpgp: Use parens for assert_send_and_sync!.Azul
2020-12-08openpgp: Require Policies to be Send and Sync.Azul
2020-12-08openpgp: Allow generic types in assert_send_and_sync!.Azul
2020-12-08openpgp: Ensure public types are Send and Sync.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-06openpgp: Use non_exhaustive attribute.Nora Widdecke
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: Avoid now unnecessary wrapping.Justus Winter
2020-10-20openpgp: Harmonize the BufferedReader type.Justus Winter
2020-10-20openpgp: Return the reader in PacketParserEOF.Justus Winter
2020-10-19openpgp: Avoid buffering.Justus Winter
2020-10-14Replace most 'extern crate' directives with 'use'.Justus Winter
2020-10-07openpgp: Align MPI parsing functions with trait Parse.Justus Winter
2020-10-06openpgp: Move checksum processing to SecretKeyMaterial::_parse.Justus Winter