15 lines
304 B
Go
15 lines
304 B
Go
package sshsecure
|
|
|
|
import (
|
|
"git.square-r00t.net/sshsecure/sshkeys"
|
|
)
|
|
|
|
const (
|
|
RoundsDefUser uint = 100
|
|
RoundsDefHost uint = 100
|
|
RSABitSize uint = 4096
|
|
DefKeyType string = sshkeys.KEY_ED25519
|
|
DefCipher string = sshkeys.CIPHER_AES256_CTR
|
|
DefKDF string = sshkeys.KDF_BCRYPT
|
|
)
|