mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-11-29 22:08:10 +02:00
ssh: use 3072-bits for the auto-generated RSA key
This is the same as ssh-keygen Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
@@ -380,7 +380,7 @@ func GenerateRSAKeys(file string) error {
|
||||
if err := createDirPathIfMissing(file, 0700); err != nil {
|
||||
return err
|
||||
}
|
||||
key, err := rsa.GenerateKey(rand.Reader, 4096)
|
||||
key, err := rsa.GenerateKey(rand.Reader, 3072)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user