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