Stub out fetching secret key entity

This commit is contained in:
sm
2018-02-27 20:47:04 -08:00
parent 6066c3bd55
commit 344148be2d
3 changed files with 15 additions and 2 deletions
+5
View File
@@ -328,3 +328,8 @@ func findKey(el openpgp.EntityList, id string) (*openpgp.Entity, error) {
}
return e, fmt.Errorf("key %q not found", id)
}
// FindSecretEntity searches for id in the secret keyring.
func FindSecretEntity(root, id string) (*openpgp.Entity, error) {
return nil, errors.New("NYI")
}