summaryrefslogtreecommitdiffstats
path: root/openpgp/examples/decrypt-with.rs
AgeCommit message (Collapse)Author
2018-12-17openpgp: Change KeyIter to also return the RevocationStatus.Neal H. Walfield
- A Key's revocation status is a property of its binding, but the binding is not exposed by KeyIter. Expose it.
2018-12-14openpgp: Introduce trait Parse.Justus Winter
- Trait Parse introduces a uniform interface to parse packets, messages, keys, and related data structures.
2018-12-12openpgp: Move SecretKey to packet::key.Justus Winter
2018-11-26openpgp: Update examples.Justus Winter
- The packet parser transparently strips armor now.
2018-11-24Rename the openpgp crate to sequoia-openpgp.Justus Winter
2018-10-16openpgp: Improve examples.Justus Winter
- Fixes #112.
2018-10-09openpgp: Don't return the depth from PacketParser::{next,recurse}Neal H. Walfield
- Change PacketParser::next and PacketParser::recurse to not return the packets' depths. Instead, require the caller to query them using accessor functions, if they are needed (they usually aren't).
2018-09-28openpgp: Add and use a type holding session keys.Justus Winter
2018-09-03openpgp: Expose packet structs in the packet module.Justus Winter
- Fixes #64.
2018-08-29openpgp: Make the keys() iterator more useful.Justus Winter
- Return the corresponding (binding-)signature along with the keys.
2018-08-24openpgp: Make PacketParser's next() and recurse() return two tuples.Justus Winter
- This logically groups the returned values, and makes it easier to ignore both packet-related values. - See #27.
2018-08-24openpgp: Make struct PKESK opaque, add getters and setters.Justus Winter
- See #57.
2018-08-24openpgp: Make struct Key opaque, add getters and setters.Justus Winter
- See #57.
2018-07-05openpgp: Add simple decryption example.Justus Winter