-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Description
The use of RSA keys is hard coded.
Lines 51 to 60 in c239074
| selectKey: function(callback) { | |
| var client = new SSH(), | |
| snip = 12; | |
| client.requestIdentities(function(error, keys) { | |
| keys = keys.filter(function(k) { return k.type === 'ssh-rsa' }); | |
| if (keys.length === 0) | |
| return callback(new Error('No usable RSA keys were found')); | |
Nowadays that ed25519 keys are also common, it could be nice to have them available for encryption/decryption, too.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels