LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // This package contains common error types for the OpenPGP packages. | 5 // Package error contains common error types for the OpenPGP packages. |
6 package error | 6 package error |
7 | 7 |
8 import ( | 8 import ( |
9 "strconv" | 9 "strconv" |
10 ) | 10 ) |
11 | 11 |
12 // A StructuralError is returned when OpenPGP data is found to be syntactically | 12 // A StructuralError is returned when OpenPGP data is found to be syntactically |
13 // invalid. | 13 // invalid. |
14 type StructuralError string | 14 type StructuralError string |
15 | 15 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 return "signature make by unknown entity" | 55 return "signature make by unknown entity" |
56 } | 56 } |
57 | 57 |
58 var UnknownIssuerError = unknownIssuer(0) | 58 var UnknownIssuerError = unknownIssuer(0) |
59 | 59 |
60 type UnknownPacketTypeError uint8 | 60 type UnknownPacketTypeError uint8 |
61 | 61 |
62 func (upte UnknownPacketTypeError) String() string { | 62 func (upte UnknownPacketTypeError) String() string { |
63 return "unknown OpenPGP packet type: " + strconv.Itoa(int(upte)) | 63 return "unknown OpenPGP packet type: " + strconv.Itoa(int(upte)) |
64 } | 64 } |
LEFT | RIGHT |