{{Box|text=
{{IconSet|h3|1}} [[Secure_Downloads|Securely download]] the key.
{{CodeSelect|code=
{{Curl_Secure_Download}} {{{url}}}
}}
{{IconSet|h3|2}} Display the key's fingerprint.
{{CodeSelect|code=
gpg --keyid-format long --import --import-options show-only --with-fingerprint {{{source_filename}}}
}}
{{IconSet|h3|3}} Verify the fingerprint.
The most important check is confirming the key fingerprint exactly matches the output below.
{{#tag:pre|Key fingerprint = {{{gpg_fingerprint_output}}}}}
{{mbox
| image = [[File:Ambox_warning_pn.svg.png|40px]]
| text =
'''Warning:'''
Do not continue if the fingerprint does not match - this risks using infected or erroneous files! The whole point of verification is to confirm file integrity.
}}
{{IconSet|h3|4}} Add the signing key.
{{CodeSelect|code=
sudo cp {{{source_filename}}} {{{target_filename}}}
}}
{{IconSet|h3|5}} Adjust file permissions. [
This is due to [[umask]]).
]
{{CodeSelect|code=
sudo chmod o+r {{{target_filename}}}
}}
{{IconSet|h3|6}} Done.
The key has been added to the keyring.
}}
{{Header}}
[[Category:MultiWiki]]
{{Footer}}