Source File
errors.go
Belonging Package
golang.org/x/crypto/openpgp/errors
package errors // import "golang.org/x/crypto/openpgp/errors"
import (
)
type StructuralError string
func ( StructuralError) () string {
return "openpgp: invalid data: " + string()
}
type UnsupportedError string
func ( UnsupportedError) () string {
return "openpgp: unsupported feature: " + string()
}
type InvalidArgumentError string
func ( InvalidArgumentError) () string {
return "openpgp: invalid argument: " + string()
}
type SignatureError string
func ( SignatureError) () string {
return "openpgp: invalid signature: " + string()
}
type keyIncorrectError int
func ( keyIncorrectError) () string {
return "openpgp: incorrect key"
}
var ErrKeyIncorrect error = keyIncorrectError(0)
type unknownIssuerError int
func (unknownIssuerError) () string {
return "openpgp: signature made by unknown entity"
}
var ErrUnknownIssuer error = unknownIssuerError(0)
type keyRevokedError int
func (keyRevokedError) () string {
return "openpgp: signature made by revoked key"
}
var ErrKeyRevoked error = keyRevokedError(0)
type UnknownPacketTypeError uint8
func ( UnknownPacketTypeError) () string {
return "openpgp: unknown packet type: " + strconv.Itoa(int())
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |