1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Added note about passphrase-protected keys (#2189)

This commit is contained in:
Jeremy Stretch
2018-07-18 11:03:22 -04:00
parent aa0e4406eb
commit 02b6ffd59a

View File

@ -153,7 +153,8 @@ class UserKeyForm(BootstrapMixin, forms.ModelForm):
model = UserKey
fields = ['public_key']
help_texts = {
'public_key': "Enter your public RSA key. Keep the private one with you; you'll need it for decryption.",
'public_key': "Enter your public RSA key. Keep the private one with you; you'll need it for decryption. "
"Please note that passphrase-protected keys are not supported.",
}
def clean_public_key(self):