summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/include/sequoia/openpgp
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-01-17 17:58:28 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-01-17 17:58:28 +0100
commitddf8b43b70e9b89237fe8a8f946582ed7878e367 (patch)
tree5616fde0bf51e9a903140cfc289cff68892dd872 /openpgp-ffi/include/sequoia/openpgp
parent72f7f83fa697ac44d962dc65ef9329dcfe6fd3e8 (diff)
openpgp-ffi: Rename 'pgp_p_key*' to 'pgp_key*'.
- This is the result of the following command: git grep -il pgp_p_key | while read F ; do sed -E -i -e 's/pgp_p_key/pgp_key/g' $F ; done - Fixes #155.
Diffstat (limited to 'openpgp-ffi/include/sequoia/openpgp')
-rw-r--r--openpgp-ffi/include/sequoia/openpgp/crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp-ffi/include/sequoia/openpgp/crypto.h b/openpgp-ffi/include/sequoia/openpgp/crypto.h
index 6e7fb0ca..00d49466 100644
--- a/openpgp-ffi/include/sequoia/openpgp/crypto.h
+++ b/openpgp-ffi/include/sequoia/openpgp/crypto.h
@@ -27,12 +27,12 @@ void pgp_signer_free (pgp_signer_t s);
typedef struct pgp_key_pair *pgp_key_pair_t;
/* Forward declaration. */
-typedef struct pgp_p_key *pgp_p_key_t;
+typedef struct pgp_key *pgp_key_t;
/*/
/// Creates a new key pair.
/*/
-void pgp_key_pair_new (pgp_p_key_t public, pgp_mpi_t secret);
+void pgp_key_pair_new (pgp_key_t public, pgp_mpi_t secret);
/*/
/// Frees a key pair.