summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/transport/ssh/SshKey.java
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue with not serialisable ed25519 SSH keysFlorian Zschocke2022-11-161-0/+9
| | | | | | | | | Adding Ed25519 keys brings the problem that with the library currently used, the PublicKey instance of that key is not serialisable. This results in an exception when wicket tries to cache the UsersPage. So change the SshKeysPanel so that the PublicKey object is removed from the `SshKey` when the panel is detached. It can be regenerated from the raw key data.
* Update to SSHD 1.0.0James Moger2015-09-181-3/+4
|
* Strip line breaks from pasted SSH keysJames Moger2015-03-071-1/+3
|
* Prevent adding empty or invalid SSH public keysJames Moger2014-04-251-1/+1
|
* Update headersJames Moger2014-04-131-0/+15
|
* Unit tests for ssh daemon and keys dispatcherJames Moger2014-04-101-2/+2
|
* Support specifying permission levels for SSH public keysJames Moger2014-04-101-0/+47
|
* Add command to change the comment of a registered ssh public keyJames Moger2014-04-101-0/+3
|
* Integrate a patched version of FlipTables and improve ls outputJames Moger2014-04-101-20/+26
|
* Handle ssh keys as objects, not strings, and improve the ls and rm key commandsJames Moger2014-04-101-0/+156
"gitblit keys ls" now defaults to showing an indexed list of fingerprints which almost matches the output of "sshadd -l". The indexes are useful specifying key(s) to remove using "gitblit keys rm <index>". This is an important improvement for key management.