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