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