Packet represents an OpenPGP packet. Users are expected to try casting instances of this interface to specific packet types.
| 294 | // Packet represents an OpenPGP packet. Users are expected to try casting |
| 295 | // instances of this interface to specific packet types. |
| 296 | type Packet interface { |
| 297 | parse(io.Reader) error |
| 298 | } |
| 299 | |
| 300 | // consumeAll reads from the given Reader until error, returning the number of |
| 301 | // bytes read. |
no outgoing calls
no test coverage detected
searching dependent graphs…