Stub out PGPPacket._parse_signature_packet
authorW. Trevor King <wking@tremily.us>
Fri, 20 Dec 2013 18:58:13 +0000 (10:58 -0800)
committerW. Trevor King <wking@tremily.us>
Fri, 20 Dec 2013 19:46:31 +0000 (11:46 -0800)
commit6fdae81be28e2b49a7207f003629db190abc11dd
tree37335f2ad2b32980c74a46ed9e6931182f7e6c24
parentc6dadc20eb43ac6617ad8f9dfa3e3803e2195162
Stub out PGPPacket._parse_signature_packet

The first octet of each signature packet is it's version number.  That
means we can parse the first octet of the signature packet and use its
value to determine which version we're parsing.  From RFC 4880 [1]:

  The body of a version 3 Signature Packet contains:

  - One-octet version number (3).
  - ...

And in the next section [2]:

  The body of a version 4 Signature Packet contains:

  - One-octet version number (4).
  - ...

[1]: http://tools.ietf.org/search/rfc4880#section-5.2.2
[2]: http://tools.ietf.org/search/rfc4880#section-5.2.3
gpg-migrate.py