SilcPGPPacketTag

NAME

    typedef enum { ... } SilcPGPPacketTag;

DESCRIPTION

OpenPGP packet types.

SOURCE

typedef enum {
  SILC_PGP_PACKET_PKENC_SK        = 1,   /* Public key enc session key */
  SILC_PGP_PACKET_SIGNATURE       = 2,   /* Signature packet */
  SILC_PGP_PACKET_SENC_SK         = 3,   /* Symmetric-key enc session key */
  SILC_PGP_PACKET_OP_SIGNATURE    = 4,   /* One pass signature packet */
  SILC_PGP_PACKET_SECKEY          = 5,   /* Secret key packet */
  SILC_PGP_PACKET_PUBKEY          = 6,   /* Public key packet */
  SILC_PGP_PACKET_SECKEY_SUB      = 7,   /* Secret subkey packet */
  SILC_PGP_PACKET_COMP_DATA       = 8,   /* Compressed data packet */
  SILC_PGP_PACKET_SENC_DATA       = 9,   /* Symmetrically enc data packet */
  SILC_PGP_PACKET_MARKER          = 10,  /* Marker packet */
  SILC_PGP_PACKET_LITERAL_DATA    = 11,  /* Literal data packet */
  SILC_PGP_PACKET_TRUST           = 12,  /* Trust packet */
  SILC_PGP_PACKET_USER_ID         = 13,  /* User ID packet */
  SILC_PGP_PACKET_PUBKEY_SUB      = 14,  /* Public subkey packet */
  SILC_PGP_PACKET_USER_ATTR       = 17,  /* User attribute packet */
  SILC_PGP_PACKET_SENC_I_DATA     = 18,  /* Symmetric key enc/integ data */
  SILC_PGP_PACKET_MDC             = 19,  /* Modification detection code */
} SilcPGPPacketTag;