Skip to content

Commit

Permalink
Detect correct fingerprint when using PGP subkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsasha committed Nov 28, 2024
1 parent 8949ccf commit eef1470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irrd/utils/pgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ def validate_pgp_signature(
logger.info(f"checked PGP signature, response: {log_message}")
if result.valid and result.key_status is None:
logger.info(f"Found valid PGP signature, fingerprint {result.fingerprint}")
return new_message, result.fingerprint
return new_message, result.pubkey_fingerprint
return None, None

0 comments on commit eef1470

Please sign in to comment.