diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:08:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:08:25 +0000 |
commit | 86475089aa5b6ea7981328e047087544c08ba7da (patch) | |
tree | 3f7fb8103aab297b3f615215a80aaa08f372f68a /debian/patches/progress-linux | |
parent | Setting default RSA size in ssh-keygen to 4096. (diff) | |
download | openssh-86475089aa5b6ea7981328e047087544c08ba7da.tar.xz openssh-86475089aa5b6ea7981328e047087544c08ba7da.zip |
Setting default ECDSA size in ssh-keygen to 521.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/progress-linux')
-rw-r--r-- | debian/patches/progress-linux/0003-ssh-keygen-default-ecdsa-size.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches/progress-linux/0003-ssh-keygen-default-ecdsa-size.patch b/debian/patches/progress-linux/0003-ssh-keygen-default-ecdsa-size.patch new file mode 100644 index 0000000..0a2a151 --- /dev/null +++ b/debian/patches/progress-linux/0003-ssh-keygen-default-ecdsa-size.patch @@ -0,0 +1,27 @@ +Author: Daniel Baumann <daniel.baumann@progress-linux.org> +Description: Setting default ECDSA size in ssh-keygen to 521. + +diff -Naurp openssh.orig/ssh-keygen.1 openssh/ssh-keygen.1 +--- openssh.orig/ssh-keygen.1 ++++ openssh/ssh-keygen.1 +@@ -277,7 +277,7 @@ For ECDSA keys, the + flag determines the key length by selecting from one of three elliptic + curve sizes: 256, 384 or 521 bits. + Attempting to use bit lengths other than these three values for ECDSA keys +-will fail. ++will fail and the default is 521 bits. + ECDSA-SK, Ed25519 and Ed25519-SK keys have a fixed length and the + .Fl b + flag will be ignored. +diff -Naurp openssh.orig/ssh-keygen.c openssh/ssh-keygen.c +--- openssh.orig/ssh-keygen.c ++++ openssh/ssh-keygen.c +@@ -81,7 +81,7 @@ + */ + #define DEFAULT_BITS 4096 + #define DEFAULT_BITS_DSA 1024 +-#define DEFAULT_BITS_ECDSA 256 ++#define DEFAULT_BITS_ECDSA 521 + + static int quiet = 0; + |