package errors
import "golang.org/x/crypto/openpgp/errors"
Package errors contains common error types for the OpenPGP packages.
Deprecated: this package is unmaintained except for security fixes. New applications should consider a more focused, modern alternative to OpenPGP for their specific task. If you are required to interoperate with OpenPGP systems and need a maintained package, consider a community fork. See https://golang.org/issue/44226.
Index ¶
- Variables
- type InvalidArgumentError
- type SignatureError
- type StructuralError
- type UnknownPacketTypeError
- type UnsupportedError
Variables ¶
var ErrKeyIncorrect error = keyIncorrectError(0)
var ErrKeyRevoked error = keyRevokedError(0)
var ErrUnknownIssuer error = unknownIssuerError(0)
Types ¶
type InvalidArgumentError ¶
type InvalidArgumentError string
InvalidArgumentError indicates that the caller is in error and passed an incorrect value.
func (InvalidArgumentError) Error ¶
func (i InvalidArgumentError) Error() string
type SignatureError ¶
type SignatureError string
SignatureError indicates that a syntactically valid signature failed to validate.
func (SignatureError) Error ¶
func (b SignatureError) Error() string
type StructuralError ¶
type StructuralError string
A StructuralError is returned when OpenPGP data is found to be syntactically invalid.
func (StructuralError) Error ¶
func (s StructuralError) Error() string
type UnknownPacketTypeError ¶
type UnknownPacketTypeError uint8
func (UnknownPacketTypeError) Error ¶
func (upte UnknownPacketTypeError) Error() string
type UnsupportedError ¶
type UnsupportedError string
UnsupportedError indicates that, although the OpenPGP data is valid, it makes use of currently unimplemented features.
func (UnsupportedError) Error ¶
func (s UnsupportedError) Error() string
Source Files ¶
errors.go
- Version
- v0.34.0 (latest)
- Published
- Feb 22, 2025
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 9 hours ago –
Tools for package owners.