]> the.earth.li Git - onak.git/blob - openpgp.h
Fix use of absolute path in Debian postinst script
[onak.git] / openpgp.h
1 /*
2  * openpgp.h - Defines directly related to OpenPGP RFC 4880
3  *
4  * Copyright 2011 Jonathan McDowell <noodles@earth.li>
5  *
6  * This program is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc., 51
17  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __OPENPGP_H__
21 #define __OPENPGP_H__
22
23 #define OPENPGP_PKALGO_RSA              1
24 #define OPENPGP_PKALGO_RSA_ENC          2
25 #define OPENPGP_PKALGO_RSA_SIGN         3
26 #define OPENPGP_PKALGO_ELGAMAL_ENC      16
27 #define OPENPGP_PKALGO_DSA              17
28 #define OPENPGP_PKALGO_EC               18
29 #define OPENPGP_PKALGO_ECDSA            19
30 #define OPENPGP_PKALGO_ELGAMAL_SIGN     20
31 #define OPENPGP_PKALGO_DH               21
32 #define OPENPGP_PKALGO_EDDSA            22
33
34 #define OPENPGP_SYMALGO_PLAIN           0
35 #define OPENPGP_SYMALGO_IDEA            1
36 #define OPENPGP_SYMALGO_3DES            2
37 #define OPENPGP_SYMALGO_CAST5           3
38 #define OPENPGP_SYMALGO_BLOWFISH        4
39 #define OPENPGP_SYMALGO_SAFER_SK128     5       /* In RFC2440, not in RFC4880 */
40 #define OPENPGP_SYMALGO_DES_SK          6       /* In RFC2440, not in RFC4880 */
41 #define OPENPGP_SYMALGO_AES128          7
42 #define OPENPGP_SYMALGO_AES192          8
43 #define OPENPGP_SYMALGO_AES256          9
44 #define OPENPGP_SYMALGO_TWOFISH         10
45 #define OPENPGP_SYMALGO_CAMELLIA128     11      /* From GnuPG */
46 #define OPENPGP_SYMALGO_CAMELLIA192     12      /* From GnuPG */
47 #define OPENPGP_SYMALGO_CAMELLIA256     13      /* From GnuPG */
48
49 #define OPENPGP_HASH_MD5                1
50 #define OPENPGP_HASH_SHA1               2
51 #define OPENPGP_HASH_RIPEMD160          3
52 #define OPENPGP_HASH_SHA1X              4       /* In RFC2440, not in RFC4880 */
53 #define OPENPGP_HASH_MD2                5       /* In RFC2440, not in RFC4880 */
54 #define OPENPGP_HASH_TIGER192           6       /* In RFC2440, not in RFC4880 */
55 #define OPENPGP_HASH_HAVAL_5_160        7       /* In RFC2440, not in RFC4880 */
56 #define OPENPGP_HASH_SHA256             8
57 #define OPENPGP_HASH_SHA384             9
58 #define OPENPGP_HASH_SHA512             10
59 #define OPENPGP_HASH_SHA224             11
60
61 #define OPENPGP_COMP_NONE               0
62 #define OPENPGP_COMP_ZIP                1
63 #define OPENPGP_COMP_ZLIB               2
64 #define OPENPGP_COMP_BZIP2              3
65
66 #define OPENPGP_PACKET_PKSESSIONKEY     1
67 #define OPENPGP_PACKET_SIGNATURE        2
68 #define OPENPGP_PACKET_SYMSESSIONKEY    3
69 #define OPENPGP_PACKET_ONEPASSSIG       4
70 #define OPENPGP_PACKET_SECRETKEY        5
71 #define OPENPGP_PACKET_PUBLICKEY        6
72 #define OPENPGP_PACKET_SECRETSUBKEY     7
73 #define OPENPGP_PACKET_COMPRESSED       8
74 #define OPENPGP_PACKET_ENCRYPTED        9
75 #define OPENPGP_PACKET_MARKER           10
76 #define OPENPGP_PACKET_LITERALDATA      11
77 #define OPENPGP_PACKET_TRUST            12
78 #define OPENPGP_PACKET_UID              13
79 #define OPENPGP_PACKET_PUBLICSUBKEY     14
80 #define OPENPGP_PACKET_UAT              17
81 #define OPENPGP_PACKET_ENCRYPTED_MDC    18
82 #define OPENPGP_PACKET_MDC              19
83 #define OPENPGP_PACKET_COMMENT          61
84
85 #define OPENPGP_SIGTYPE_BINARY          0x00
86 #define OPENPGP_SIGTYPE_TEXT            0x01
87 #define OPENPGP_SIGTYPE_KEY_REV         0x20
88 #define OPENPGP_SIGTYPE_SUBKEY_REV      0x28
89 #define OPENPGP_SIGTYPE_CERT_REV        0x30
90
91 #define OPENPGP_SIGSUB_CREATION         2
92 #define OPENPGP_SIGSUB_EXPIRY           3
93 #define OPENPGP_SIGSUB_EXPORTABLE       4
94 #define OPENPGP_SIGSUB_TRUSTSIG         5
95 #define OPENPGP_SIGSUB_REGEX            6
96 #define OPENPGP_SIGSUB_REVOCABLE        7
97 #define OPENPGP_SIGSUB_CAPABILITIES     8       /* Legacy */
98 #define OPENPGP_SIGSUB_KEYEXPIRY        9
99 #define OPENPGP_SIGSUB_ARR              10      /* Placeholder in RFC */
100 #define OPENPGP_SIGSUB_PREFSYM          11
101 #define OPENPGP_SIGSUB_REVOCATION_KEY   12
102 #define OPENPGP_SIGSUB_ISSUER           16
103 #define OPENPGP_SIGSUB_ISSUER_UID       17      /* Legacy */
104 #define OPENPGP_SIGSUB_URL              18      /* Legacy */
105 #define OPENPGP_SIGSUB_ISSUER_FINGER    19      /* Legacy */
106 #define OPENPGP_SIGSUB_NOTATION         20
107 #define OPENPGP_SIGSUB_PREFHASH         21
108 #define OPENPGP_SIGSUB_PREFCOMPRESS     22
109 #define OPENPGP_SIGSUB_KEYSERVER        23
110 #define OPENPGP_SIGSUB_PREFKEYSERVER    24
111 #define OPENPGP_SIGSUB_PRIMARYUID       25
112 #define OPENPGP_SIGSUB_POLICYURI        26
113 #define OPENPGP_SIGSUB_KEYFLAGS         27
114 #define OPENPGP_SIGSUB_SIGNER_UID       28
115 #define OPENPGP_SIGSUB_REVOKE_REASON    29
116 #define OPENPGP_SIGSUB_FEATURES         30
117 #define OPENPGP_SIGSUB_SIGNATURE_TARGET 31
118 #define OPENPGP_SIGSUB_EMBEDDED_SIG     32
119
120 #endif /* __OPENPGP_H__ */