Stub out fetching secret key entity

This commit is contained in:
sm
2018-02-26 20:07:47 -08:00
parent 85e33bbe90
commit 17cfd72173
3 changed files with 15 additions and 2 deletions
+5
View File
@@ -340,3 +340,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")
}