mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 15:10:23 +00: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:
parent
b823bb04d2
commit
3f2604d33f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue