diff options
author | Jerry Jacobs <xor-gate@users.noreply.github.com> | 2018-10-31 01:08:30 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-10-30 20:08:30 -0400 |
commit | 22ad514297b1958f93913aacbb88b81a94113a1e (patch) | |
tree | ee448a94eeef244da26a834be10e77d13b655fa5 /integrations/auth_ldap_test.go | |
parent | b686bd0c9467885308a8e45214e75ee270c084e2 (diff) | |
download | gitea-22ad514297b1958f93913aacbb88b81a94113a1e.tar.gz gitea-22ad514297b1958f93913aacbb88b81a94113a1e.zip |
Fix issue where ecdsa and other key types are not synced from LDAP (#5092) (#5094)
* Fix issue where ecdsa and other key types are not synced from LDAP authentication provider fixes #5092
* integrations/auth_ldap_test.go: Add Hermes Conrad new ecdsa-sha2-nistp256 publickey fingerprint
* integrations/auth_ldap_test.go: Use ssh-keygen -lf <filename> -E sha256
Diffstat (limited to 'integrations/auth_ldap_test.go')
-rw-r--r-- | integrations/auth_ldap_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/integrations/auth_ldap_test.go b/integrations/auth_ldap_test.go index f31f598fa4..52fe0fd73f 100644 --- a/integrations/auth_ldap_test.go +++ b/integrations/auth_ldap_test.go @@ -43,6 +43,7 @@ var gitLDAPUsers = []ldapUser{ SSHKeys: []string{ "SHA256:qLY06smKfHoW/92yXySpnxFR10QFrLdRjf/GNPvwcW8", "SHA256:QlVTuM5OssDatqidn2ffY+Lc4YA5Fs78U+0KOHI51jQ", + "SHA256:DXdeUKYOJCSSmClZuwrb60hUq7367j4fA+udNC3FdRI", }, IsAdmin: true, }, |