]> git.ipfire.org Git - thirdparty/openssl.git/blob - .gitignore
Fix safestack issues in cms.h
[thirdparty/openssl.git] / .gitignore
1 # Ignore editor artefacts
2 /.dir-locals.el
3
4 # Top level excludes
5 /Makefile
6 /MINFO
7 /TABLE
8 /*.pc
9 /rehash.time
10 /inc.*
11 /makefile.*
12 /out.*
13 /tmp.*
14 /configdata.pm
15
16 # Links under apps
17 /apps/CA.pl
18 /apps/tsget
19 /apps/tsget.pl
20 /apps/md4.c
21
22 # Auto generated headers
23 /crypto/buildinf.h
24 /include/crypto/*_conf.h
25 /include/openssl/asn1.h
26 /include/openssl/cmp.h
27 /include/openssl/cms.h
28 /include/openssl/configuration.h
29 /include/openssl/fipskey.h
30 /include/openssl/opensslv.h
31 /include/openssl/safestack.h
32 /include/openssl/ssl.h
33 /include/openssl/x509.h
34 /include/openssl/x509v3.h
35
36 # Auto generated doc files
37 doc/man1/openssl-*.pod
38
39 # Auto generated der files
40 providers/common/der/der_digests_gen.c
41 providers/common/der/der_dsa_gen.c
42 providers/common/der/der_ec_gen.c
43 providers/common/der/der_rsa_gen.c
44 providers/common/der/der_wrap_gen.c
45 providers/common/include/prov/der_dsa.h
46 providers/common/include/prov/der_ec.h
47 providers/common/include/prov/der_rsa.h
48 providers/common/include/prov/der_digests.h
49 providers/common/include/prov/der_wrap.h
50
51 # error code files
52 /crypto/err/openssl.txt.old
53 /engines/e_afalg.txt.old
54 /engines/e_capi.txt.old
55 /engines/e_dasync.txt.old
56 /engines/e_ossltest.txt.old
57
58 # Executables
59 /apps/openssl
60 /test/sha256t
61 /test/sha512t
62 /test/gost2814789t
63 /test/ssltest_old
64 /test/*test
65 /test/fips_aesavs
66 /test/fips_desmovs
67 /test/fips_dhvs
68 /test/fips_drbgvs
69 /test/fips_dssvs
70 /test/fips_ecdhvs
71 /test/fips_ecdsavs
72 /test/fips_rngvs
73 /test/fips_test_suite
74 /test/ssltest_old
75 /test/x509aux
76 /test/v3ext
77 /test/versions
78 /test/ossl_shim/ossl_shim
79 /test/rsa_complex
80 /test/confdump
81 /test/bio_prefix_text
82 /test/evp_extra_test2
83
84 # Certain files that get created by tests on the fly
85 /test-runs
86 /test/buildtest_*
87 /test/provider_internal_test.cnf
88 /test/fipsmodule.cnf
89 /providers/fipsmodule.cnf
90
91 # Fuzz stuff.
92 # Anything without an extension is an executable on Unix, so we keep files
93 # with extensions. And we keep the corpora subddir versioned as well.
94 # Anything more generic with extensions that should be ignored will be taken
95 # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
96 /fuzz/*
97 !/fuzz/README*
98 !/fuzz/corpora
99 !/fuzz/*.*
100
101 # Misc auto generated files
102 /doc/man7/openssl_user_macros.pod
103 /tools/c_rehash
104 /tools/c_rehash.pl
105 /util/shlib_wrap.sh
106 /tags
107 /TAGS
108 *.map
109 *.ld
110 /apps/progs.c
111 /apps/progs.h
112
113 # Windows (legacy)
114 /tmp32
115 /tmp32.dbg
116 /tmp32dll
117 /tmp32dll.dbg
118 /out32
119 /out32.dbg
120 /out32dll
121 /out32dll.dbg
122 /inc32
123 /MINFO
124 /ms/bcb.mak
125 /ms/libeay32.def
126 /ms/nt.mak
127 /ms/ntdll.mak
128 /ms/ssleay32.def
129 /ms/version32.rc
130
131 # Files created on other branches that are not held in git, and are not
132 # needed on this branch
133 /include/openssl/asn1_mac.h
134 /include/openssl/des_old.h
135 /include/openssl/fips.h
136 /include/openssl/fips_rand.h
137 /include/openssl/krb5_asn.h
138 /include/openssl/kssl.h
139 /include/openssl/pq_compat.h
140 /include/openssl/ssl23.h
141 /include/openssl/tmdiff.h
142 /include/openssl/ui_compat.h
143 /test/fips_aesavs.c
144 /test/fips_desmovs.c
145 /test/fips_dsatest.c
146 /test/fips_dssvs.c
147 /test/fips_hmactest.c
148 /test/fips_randtest.c
149 /test/fips_rngvs.c
150 /test/fips_rsagtest.c
151 /test/fips_rsastest.c
152 /test/fips_rsavtest.c
153 /test/fips_shatest.c
154 /test/fips_test_suite.c
155 /test/shatest.c
156
157 # Generated docs directories
158 /doc/html
159 /doc/man
160
161 ##### Generic patterns
162 # Auto generated assembly language source files
163 *.s
164 !/crypto/*/asm/*.s
165 /crypto/arm*.S
166 /crypto/*/*.S
167 *.asm
168 !/crypto/*/asm/*.asm
169
170 # Object files
171 *.o
172 *.obj
173
174 # editor artefacts
175 *.swp
176 .#*
177 \#*#
178 *~
179
180 # Certificate symbolic links
181 *.0
182
183 # All kinds of libraries and executables
184 *.a
185 *.so
186 *.so.*
187 *.dylib
188 *.dylib.*
189 *.dll
190 *.dll.*
191 *.exe
192 *.pyc
193 *.exp
194 *.lib
195 *.pdb
196 *.ilk
197 *.def
198 *.rc
199 *.res
200
201 # Misc generated stuff
202 Makefile.save
203 /crypto/**/lib
204 /engines/**/lib
205 /ssl/**/lib
206 *.bak
207 cscope.*
208 *.d
209 *.d.tmp
210 pod2htmd.tmp
211
212 # Windows manifest files
213 *.manifest
214 doc-nits