summaryrefslogtreecommitdiffstats
path: root/ffi
diff options
context:
space:
mode:
Diffstat (limited to 'ffi')
-rw-r--r--ffi/lang/python/sequoia/openpgp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffi/lang/python/sequoia/openpgp.py b/ffi/lang/python/sequoia/openpgp.py
index 73f58c0b..46cf50b5 100644
--- a/ffi/lang/python/sequoia/openpgp.py
+++ b/ffi/lang/python/sequoia/openpgp.py
@@ -186,11 +186,11 @@ class Tag(Enum):
class Key(SQObject):
@property
def fingerprint(self):
- return Fingerprint(lib.pgp_p_key_fingerprint(self.ref()))
+ return Fingerprint(lib.pgp_key_fingerprint(self.ref()))
@property
def keyid(self):
- return KeyID(lib.pgp_p_key_keyid(self.ref()))
+ return KeyID(lib.pgp_key_keyid(self.ref()))
class PublicKey(Key):
pass