fix: Prevent recipient and identity parsing errors from being indistinguishable

This commit is contained in:
Felix Pojtinger
2021-12-08 22:01:30 +01:00
parent 103e9d1099
commit 7b9b528e4f
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ var (
ErrEncryptionFormatUnknown = errors.New("unknown encryption format")
ErrEncryptionFormatUnsupported = errors.New("unsupported encryption format")
ErrIdentityUnparsable = errors.New("recipient could not be parsed")
ErrIdentityUnparsable = errors.New("identity could not be parsed")
ErrRecipientUnparsable = errors.New("recipient could not be parsed")
ErrEmbeddedHeaderMissing = errors.New("embedded header is missing")