SSHSecure/sshkeys/const.go

13 lines
170 B
Go
Raw Normal View History

2020-09-03 19:11:42 -04:00
package sshkeys
// Needed for V1 key format.
2020-09-03 19:11:42 -04:00
const (
KeyV1Magic string = "openssh-key-v1"
2020-09-03 19:11:42 -04:00
)
// Key cipher names.
const (
CipherED25519 = iota
CipherRSA = iota
)