aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore172
1 files changed, 172 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..01afda2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,172 @@
1### These files shkuld get ignored no matter where they appear.
2
3# Editors leave these lying around
4\#*\#
5.#*
6*~
7*.swp
8
9# C stuff
10*.o
11
12# Windows stuff
13*.obj
14*.exe
15*.lib
16
17# Patch leaves these lying arround
18*.orig
19*.rej
20
21# gcov stuff
22*.gcno
23*.gcov
24*.gcda
25
26# Autotools stuff
27.deps
28.dirstamp
29Makefile
30Makefile.in
31
32# Libtool stuff
33.libs
34*.lo
35*.la
36
37# tests
38test-driver
39*.log
40*.trs
41tests/aes_wrap*
42tests/arc4random_fork*
43tests/explicit_bzero*
44tests/mont*
45tests/timingsafe*
46tests/*test*.c
47tests/*.pem
48tests/testssl
49tests/*.txt
50
51# ctags stuff
52TAGS
53
54## The initial / makes these files only get ignored in particular directories.
55/autom4te.cache
56
57# Libtool adds these, at least sometimes
58INSTALL
59/m4/libtool.m4
60/m4/ltoptions.m4
61/m4/ltsugar.m4
62/m4/ltversion.m4
63/m4/lt~obsolete.m4
64
65/aclocal.m4
66/compile
67/doxygen
68/config.guess
69/config.log
70/config.status
71/config.sub
72/configure
73/depcomp
74/config.h
75/config.h.in
76/install-sh
77/libtool
78/ltmain.sh
79/missing
80/stamp-h1
81/stamp-h2
82
83crypto/Makefile.am
84include/openssl/Makefile.am
85ssl/Makefile.am
86apps/Makefile.am
87tests/Makefile.am
88
89ssl/*.c
90ssl/*.h
91include/pqueue.h
92include/openssl/*.h
93include/openssl/*.he
94apps/*.c
95apps/*.h
96apps/*.cnf
97apps/openssl
98
99crypto/compat/arc4random.c
100crypto/compat/chacha_private.h
101crypto/compat/explicit_bzero.c
102crypto/compat/getentropy_*.c
103crypto/compat/reallocarray.c
104crypto/compat/strlcat.c
105crypto/compat/strlcpy.c
106crypto/compat/strtonum.c
107crypto/compat/timingsafe_bcmp.c
108crypto/compat/timingsafe_memcmp.c
109
110crypto/aes/
111crypto/asn1/
112crypto/bf/
113crypto/bio/
114crypto/bn/
115crypto/buffer/
116crypto/cast/
117crypto/chacha/
118crypto/cmac/
119crypto/comp/
120crypto/conf/
121crypto/cpt_err.c
122crypto/cryptlib.c
123crypto/cryptlib.h
124crypto/cversion.c
125crypto/des/
126crypto/dh/
127crypto/dsa/
128crypto/dso/
129crypto/ec/
130crypto/ecdh/
131crypto/ecdsa/
132crypto/engine/
133crypto/err/
134crypto/evp/
135crypto/ex_data.c
136crypto/hmac/
137crypto/idea/
138crypto/krb5/
139crypto/lhash/
140crypto/malloc-wrapper.c
141crypto/md32_common.h
142crypto/md4/
143crypto/md5/
144crypto/mdc2/
145crypto/mem_clr.c
146crypto/mem_dbg.c
147crypto/modes/
148crypto/o_init.c
149crypto/o_str.c
150crypto/o_time.c
151crypto/o_time.h
152crypto/objects
153crypto/ocsp/
154crypto/pem/
155crypto/pkcs12/
156crypto/pkcs7/
157crypto/poly1305/
158crypto/pqueue/
159crypto/rand/
160crypto/rc2/
161crypto/rc4/
162crypto/ripemd/
163crypto/rsa/
164crypto/sha/
165crypto/stack/
166crypto/ts/
167crypto/txt_db/
168crypto/ui/
169crypto/whrlpool/
170crypto/x509/
171crypto/x509v3/
172