summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/include/sequoia/openpgp
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-03-25 14:18:22 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-03-25 16:54:11 +0100
commit2e7cc141bbcbe6e9525a23f316955ff725a0c15c (patch)
treee5f85e233e4f2b136cbba1a2312c235d77aa9d9d /openpgp-ffi/include/sequoia/openpgp
parenta1581742171fb3fdc8acae41998774a93c8161d6 (diff)
openpgp-ffi: Rename types.
Diffstat (limited to 'openpgp-ffi/include/sequoia/openpgp')
-rw-r--r--openpgp-ffi/include/sequoia/openpgp/types.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/openpgp-ffi/include/sequoia/openpgp/types.h b/openpgp-ffi/include/sequoia/openpgp/types.h
index cf42c771..375832f9 100644
--- a/openpgp-ffi/include/sequoia/openpgp/types.h
+++ b/openpgp-ffi/include/sequoia/openpgp/types.h
@@ -456,18 +456,18 @@ typedef enum pgp_verification_result_code {
PGP_VERIFICATION_RESULT_CODE_FORCE_WIDTH = INT_MAX,
} pgp_verification_result_code_t;
-typedef pgp_status_t (*pgp_sequoia_decrypt_get_public_keys_cb_t) (void *,
- pgp_keyid_t *, size_t,
- pgp_tpk_t **, size_t *,
- void (**free)(void *));
-
-typedef pgp_status_t (*pgp_sequoia_decrypt_get_secret_keys_cb_t) (void *,
- pgp_pkesk_t *, size_t,
- pgp_skesk_t *, size_t,
- pgp_secret_t *);
-
-typedef pgp_status_t (*pgp_sequoia_decrypt_check_signatures_cb_t) (void *,
- pgp_verification_results_t,
- size_t);
+typedef pgp_status_t (*pgp_decryptor_get_public_keys_cb_t) (void *,
+ pgp_keyid_t *, size_t,
+ pgp_tpk_t **, size_t *,
+ void (**free)(void *));
+
+typedef pgp_status_t (*pgp_decryptor_get_secret_keys_cb_t) (void *,
+ pgp_pkesk_t *, size_t,
+ pgp_skesk_t *, size_t,
+ pgp_secret_t *);
+
+typedef pgp_status_t (*pgp_decryptor_check_signatures_cb_t) (void *,
+ pgp_verification_results_t,
+ size_t);
#endif