aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2007-12-24 04:08:32 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2007-12-24 04:08:32 -0800
commit4746519393b80cca6e1592dac36c05bcd25e822b (patch)
tree30de6ea592552161432335add4a9c8de8d5caa3e
parentAllow passing in a file for the admin key, and overriding the default key name. (diff)
downloadgitosis-dakkar-4746519393b80cca6e1592dac36c05bcd25e822b.tar.gz
gitosis-dakkar-4746519393b80cca6e1592dac36c05bcd25e822b.tar.bz2
gitosis-dakkar-4746519393b80cca6e1592dac36c05bcd25e822b.zip
ssh-dsa is the actual correct name, but SSH accepts ssh-dss as an alias.
-rw-r--r--gitosis/sshkey.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitosis/sshkey.py b/gitosis/sshkey.py
index d160b69..ee0aa15 100644
--- a/gitosis/sshkey.py
+++ b/gitosis/sshkey.py
@@ -9,6 +9,7 @@ import re
# The 'ecc' and 'ecdh' types are speculative, based on the Internet Draft
# http://www.ietf.org/internet-drafts/draft-green-secsh-ecc-02.txt
SSH_KEY_PROTO2_TYPES = ['ssh-dsa',
+ 'ssh-dss',
'ssh-ecc',
'ssh-ecdh',
'ssh-rsa']