stubbed out cipher funcs

This commit is contained in:
2022-04-28 05:18:25 -04:00
parent ff3f8243d1
commit 5da1bbcd11
23 changed files with 2657 additions and 49 deletions

9
keytypes/types.go Normal file
View File

@@ -0,0 +1,9 @@
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 {
}