summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/policy.rs
AgeCommit message (Collapse)Author
2020-10-14Replace most 'extern crate' directives with 'use'.Justus Winter
- See #480.
2020-03-13openpgp: Add a Null Policy.Neal H. Walfield
- Add a new Null Policy, which accepts everything.
2020-02-24openpgp: Check critical notations against good-list.Justus Winter
- See #274.
2020-02-06openpgp, openpgp-ffi, ipc: Add missing dyn.Justus Winter
2020-01-31openpgp: Add a policy object.Neal H. Walfield
- Change all functions that need to evaluate the validity of a signature (either directly or indirectly to take a policy object. - Use the policy object to allow the user to place additional constraints on a signature's validity. - This addresses the first half of #274 (it introduces the policy object, but does not yet implement any policy).