summaryrefslogtreecommitdiffstats
path: root/openpgp/NEWS
AgeCommit message (Collapse)Author
2021-08-19openpgp: Fix NEWS.Justus Winter
2021-05-20openpgp: Fix CertParser to return errors in the right order.Neal H. Walfield
- Consider a keyring of the form: `[ Alice, NUL, Bob ]`. The CertParser should return `[ Ok(Alice), Err(SomeError), Ok(Bob) ]`. Currently, we get `[ Err(SomeError), Ok(Alice), Ok(Bob) ]`, because the error is returned eagerly. - Fix it. - Fixes #699.
2021-05-20openpgp: Add missing news item.Neal H. Walfield
2021-05-03openpgp: Make CertBuilder's binding signatures customizable.Justus Winter
- Adds an interface to add userids, user attributes, and subkeys with explicit binding signature templates. This makes it possible to customize the signatures, while still hiding most of the complexity of creating a binding signature. - Fixes #421.
2021-04-28openpgp: Implement Encryptor::with_session_key.Justus Winter
- Fixes #390.
2021-04-26openpgp: Add high-level interface for attested certifications.Justus Winter
- Fixes #335.
2021-04-26openpgp: Implement ComponentBundle::attestations, improve example.Justus Winter
- See #335.
2021-04-26openpgp: Make SignatureBuilder::pre_sign public.Justus Winter
2021-04-26openpgp: New constant SubpacketAreas::MAX_SIZE.Justus Winter
2021-04-26openpgp: Expose low-level functions for attestation key signatures.Justus Winter
- See #335.
2021-04-26openpgp: Expose support for attested certifications.Justus Winter
- This is a low-level interface. We will provide nicer abstractions in a followup. - See #335.
2021-03-05openpgp: Release 1.1.0.openpgp/v1.1.0Justus Winter
2020-12-16Release 1.0.0.v1.0.0Justus Winter
- Release buffered-reader 1.0.0, sequoia-openpgp 1.0.0, and sequoia-sqv 1.0.0. - Also release sequoia-sop 0.22.0.