go_sshkeys/keytypes/types.go

10 lines
228 B
Go
Raw Permalink Normal View History

2022-04-28 05:18:25 -04:00
package keytypes
// Key contains at least one keytypes.KeyPair, a cipher.Cipher, and a kdf.KDF.
type Key interface {
}
// KeyPair contains a private key component, public key component, and comment.
type KeyPair interface {
}