summaryrefslogtreecommitdiffstats
AgeCommit message (Expand)Author
2021-09-30Simplify tests for OKLars Wirzenius
2021-09-30Use .find() in an iteratorLars Wirzenius
2021-09-30Use .starts_with instead of .chars().next()Lars Wirzenius
2021-09-30Use Result::map or ::map_err instead of ::and_thenLars Wirzenius
2021-09-30Drop pointless @_ match pattern bindingsLars Wirzenius
2021-09-30Express calculation for seconds-in-week more clearlyLars Wirzenius
2021-09-30Avoid naming field setting it from variable of the same nameLars Wirzenius
2021-09-30Disable clippy::same_item_pushLars Wirzenius
2021-09-30Use .cloned() on iterators, instead of .map(|x| x.clone())Lars Wirzenius
2021-09-30Simplify writing out a literal {}Lars Wirzenius
2021-09-30Drop unnecessary mut when passing a reference to a functionLars Wirzenius
2021-09-30Drop unnecessary &mut on a sliceLars Wirzenius
2021-09-30Drop unnecessary conversions with .into() to the same typeLars Wirzenius
2021-09-30Unpack value with if let instead of is_some/unwrapLars Wirzenius
2021-09-30Simplify &foo == &bar into foo == barLars Wirzenius
2021-09-30Use the now-idiomatic option? syntaxLars Wirzenius
2021-09-30Improve error message for a malformed packetLars Wirzenius
2021-09-30When returning an error, use "return" instead of "?"Lars Wirzenius
2021-09-30Annotate function so that clippy accepts nonminimal_boolLars Wirzenius
2021-09-30Use std::mem::take instead of std::mem::replace, for clarityLars Wirzenius
2021-09-30Drop unnecessary return statementsLars Wirzenius
2021-09-30Use .is_empty() for clarity, instead of .len() == 0Lars Wirzenius
2021-09-30Drop unnecessary clone on a value that implements CopyLars Wirzenius
2021-09-30Use a clearer and shorter += or /= operationLars Wirzenius
2021-09-30Drop extra unused lifetime annotationLars Wirzenius
2021-09-30Drop unnecessary lifetime notationsLars Wirzenius
2021-09-30Expand TAB into spacesLars Wirzenius
2021-09-29openpgp: Add RSA verification test vectors from FIPS 186-3.Justus Winter
2021-09-29openpgp: Add DSA test vectors from FIPS 186-3.Justus Winter
2021-09-29openpgp: Pad the DSA public key to the size of the modulus.Justus Winter
2021-09-29openpgp: Fix typo.Justus Winter
2021-09-29openpgp: Use new padding methods in the CNG backend.Justus Winter
2021-09-29openpgp: Avoid secret-dependent time difference.Justus Winter
2021-09-29openpgp: Use the new padding methods in the CNG backend.Justus Winter
2021-09-28openpgp: Use the new padding methods in the Nettle backend.Justus Winter
2021-09-28openpgp: Add methods for padding and truncating MPI values.Justus Winter
2021-09-28openpgp: Add two functions for padding and truncating values.Justus Winter
2021-09-28openpgp: Add ECDSA test vectors from FIPS 186-4.Justus Winter
2021-09-28openpgp: Skip test vectors if we don't support the curve.Justus Winter
2021-09-28openpgp: Add example that prints the supported algorithms.Justus Winter
2021-09-28openpgp: Improve tests.Justus Winter
2021-09-28openpgp: Add comment, also test OCB.Justus Winter
2021-09-23openpgp-ffi-macros: Avoid creating unused borrows.Nora Widdecke
2021-09-21Avoid matching on &Foo, when a plain Foo pattern worksLars Wirzenius
2021-09-20comment out msrv field in clippy.tomlLars Wirzenius
2021-09-16openpgp: Don't assert that the NIST curves are supported.Justus Winter
2021-09-16openpgp: Sanity-check selected cryptographic backends.Justus Winter
2021-09-16openpgp: Make list of supported algorithms backend-dependent.Justus Winter
2021-09-16openpgp: Fix documentation.Justus Winter
2021-09-16openpgp: Skip tests if a required algorithm is not supported.Justus Winter