13 lines
170 B
Go
13 lines
170 B
Go
package sshkeys
|
|
|
|
// Needed for V1 key format.
|
|
const (
|
|
KeyV1Magic string = "openssh-key-v1"
|
|
)
|
|
|
|
// Key cipher names.
|
|
const (
|
|
CipherED25519 = iota
|
|
CipherRSA = iota
|
|
)
|