SSHSecure/const.go

15 lines
304 B
Go
Raw Normal View History

2020-09-03 19:11:42 -04:00
package sshsecure
2020-09-12 00:58:58 -04:00
import (
"git.square-r00t.net/sshsecure/sshkeys"
)
2020-09-03 19:11:42 -04:00
const (
2020-09-12 00:58:58 -04:00
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
)