summaryrefslogtreecommitdiffstats
path: root/openpgp/src/armor
AgeCommit message (Collapse)Author
2021-11-29Fix Acronym spelling.Nora Widdecke
- In CamelCase, acronyms count as one word. Apply this rule where API and lalrpop are not impacted. - Found by clippy::upper_case_acronyms.
2021-11-05openpgp: Implement CRC24 using a precomputed table.Justus Winter
- With this patch, Sequoia's armor encoding and decoding performance roughly matches GnuPG's. - Fixes #772.
2021-11-05openpgp: Move CRC computation to its own module.Justus Winter
2021-09-30Annotate functions where single_match is OKLars Wirzenius
See https://rust-lang.github.io/rust-clippy/master/index.html#single_match
2021-04-09Lint: Use is_empty().Nora Widdecke
- https://rust-lang.github.io/rust-clippy/master/index.html#len_zero - https://rust-lang.github.io/rust-clippy/master/index.html#comparison_to_empty
2021-04-09Lint: Use byte literals.Nora Widdecke
- https://rust-lang.github.io/rust-clippy/master/index.html#char_lit_as_u8
2021-02-12openpgp: Move base64 utilities to their own module.Justus Winter