diff options
author | Hans Nilsson <[email protected]> | 2018-05-21 12:54:43 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-11-19 17:22:38 +0100 |
commit | e923747f392a3c3a4da0aae2f3766d3173b80f6e (patch) | |
tree | f7717102571b60410a3ceae073989794ffae732a /lib/ssh/src/ssh.hrl | |
parent | 5503d96504a89b1b00a78f7e7d12e79be553b215 (diff) | |
download | otp-e923747f392a3c3a4da0aae2f3766d3173b80f6e.tar.gz otp-e923747f392a3c3a4da0aae2f3766d3173b80f6e.tar.bz2 otp-e923747f392a3c3a4da0aae2f3766d3173b80f6e.zip |
ssh: Add public keys 'ssh-ed25519' and 'ssh-ed448'
Requires OpenSSL-1.1.1
https://tools.ietf.org/html/draft-ietf-curdle-ssh-ed25519-ed448-00
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index f645201c4f..27a8cfedbc 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -129,6 +129,8 @@ -type pubkey_alg() :: 'ecdsa-sha2-nistp256' | 'ecdsa-sha2-nistp384' | 'ecdsa-sha2-nistp521' | + 'ssh-ed25519' | + 'ssh-ed448' | 'rsa-sha2-256' | 'rsa-sha2-512' | 'ssh-dss' | |