Updates to supported_groups following review feedback
[openssl.git] / .gitignore
1 # Ignore editor artefacts
2 /.dir-locals.el
3
4 # Top level excludes
5 /Makefile.orig
6 /MINFO
7 /TABLE
8 /*.pc
9 /rehash.time
10 /inc.*
11 /makefile.*
12 /out.*
13 /tmp.*
14 /configdata.pm
15
16 # *all* Makefiles
17 Makefile
18 # ... except in demos
19 !/demos/*/Makefile
20
21 # Links under apps
22 /apps/CA.pl
23 /apps/tsget
24 /apps/tsget.pl
25 /apps/md4.c
26
27 # Auto generated headers
28 /crypto/buildinf.h
29 /crypto/include/internal/*_conf.h
30 /openssl/include/opensslconf.h
31 /util/domd
32
33 # Executables
34 /apps/openssl
35 /test/sha256t
36 /test/sha512t
37 /test/gost2814789t
38 /test/ssltest_old
39 /test/*test
40 /test/fips_aesavs
41 /test/fips_desmovs
42 /test/fips_dhvs
43 /test/fips_drbgvs
44 /test/fips_dssvs
45 /test/fips_ecdhvs
46 /test/fips_ecdsavs
47 /test/fips_rngvs
48 /test/fips_test_suite
49 /test/ssltest_old
50 /test/x509aux
51 /test/v3ext
52 /test/ossl_shim/ossl_shim
53
54 # Certain files that get created by tests on the fly
55 /test/*.ss
56 /test/*.srl
57 /test/.rnd
58 /test/test*.pem
59 /test/newkey.pem
60 /test/*.log
61 /test/buildtest_*
62
63 # Fuzz stuff.
64 # Anything without an extension is an executable on Unix, so we keep files
65 # with extensions.  And we keep the corpora subddir versioned as well.
66 # Anything more generic with extensions that should be ignored will be taken
67 # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
68 /fuzz/*
69 !/fuzz/README*
70 !/fuzz/corpora
71 !/fuzz/*.*
72
73 # Misc auto generated files
74 /include/openssl/opensslconf.h
75 /tools/c_rehash
76 /tools/c_rehash.pl
77 /util/shlib_wrap.sh
78 /tags
79 /TAGS
80 /crypto.map
81 /ssl.map
82
83 # Windows (legacy)
84 /tmp32
85 /tmp32.dbg
86 /tmp32dll
87 /tmp32dll.dbg
88 /out32
89 /out32.dbg
90 /out32dll
91 /out32dll.dbg
92 /inc32
93 /MINFO
94 /ms/.rnd
95 /ms/bcb.mak
96 /ms/libeay32.def
97 /ms/nt.mak
98 /ms/ntdll.mak
99 /ms/ssleay32.def
100 /ms/version32.rc
101
102 # Files created on other branches that are not held in git, and are not
103 # needed on this branch
104 /include/openssl/asn1_mac.h
105 /include/openssl/des_old.h
106 /include/openssl/fips.h
107 /include/openssl/fips_rand.h
108 /include/openssl/krb5_asn.h
109 /include/openssl/kssl.h
110 /include/openssl/pq_compat.h
111 /include/openssl/ssl23.h
112 /include/openssl/tmdiff.h
113 /include/openssl/ui_compat.h
114 /test/fips_aesavs.c
115 /test/fips_desmovs.c
116 /test/fips_dsatest.c
117 /test/fips_dssvs.c
118 /test/fips_hmactest.c
119 /test/fips_randtest.c
120 /test/fips_rngvs.c
121 /test/fips_rsagtest.c
122 /test/fips_rsastest.c
123 /test/fips_rsavtest.c
124 /test/fips_shatest.c
125 /test/fips_test_suite.c
126 /test/shatest.c
127
128 ##### Generic patterns
129 # Auto generated assembly language source files
130 *.s
131 !/crypto/*/asm/*.s
132 /crypto/arm*.S
133 /crypto/*/*.S
134 *.asm
135 !/crypto/*/asm/*.asm
136
137 # Object files
138 *.o
139 *.obj
140
141 # editor artefacts
142 *.swp
143 .#*
144 \#*#
145 *~
146
147 # Certificate symbolic links
148 *.0
149
150 # All kinds of libraries and executables
151 *.a
152 *.so
153 *.so.*
154 *.dylib
155 *.dylib.*
156 *.dll
157 *.dll.*
158 *.exe
159 *.pyc
160 *.exp
161 *.lib
162 *.pdb
163 *.ilk
164 *.def
165 *.rc
166 *.res
167
168 # Misc generated stuff
169 Makefile.save
170 /crypto/**/lib
171 /engines/**/lib
172 /ssl/**/lib
173 *.bak
174 cscope.*
175 *.d
176 pod2htmd.tmp
177
178 # Windows manifest files
179 *.manifest
180 doc-nits