diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 172 |
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 | ||
29 | Makefile | ||
30 | Makefile.in | ||
31 | |||
32 | # Libtool stuff | ||
33 | .libs | ||
34 | *.lo | ||
35 | *.la | ||
36 | |||
37 | # tests | ||
38 | test-driver | ||
39 | *.log | ||
40 | *.trs | ||
41 | tests/aes_wrap* | ||
42 | tests/arc4random_fork* | ||
43 | tests/explicit_bzero* | ||
44 | tests/mont* | ||
45 | tests/timingsafe* | ||
46 | tests/*test*.c | ||
47 | tests/*.pem | ||
48 | tests/testssl | ||
49 | tests/*.txt | ||
50 | |||
51 | # ctags stuff | ||
52 | TAGS | ||
53 | |||
54 | ## The initial / makes these files only get ignored in particular directories. | ||
55 | /autom4te.cache | ||
56 | |||
57 | # Libtool adds these, at least sometimes | ||
58 | INSTALL | ||
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 | |||
83 | crypto/Makefile.am | ||
84 | include/openssl/Makefile.am | ||
85 | ssl/Makefile.am | ||
86 | apps/Makefile.am | ||
87 | tests/Makefile.am | ||
88 | |||
89 | ssl/*.c | ||
90 | ssl/*.h | ||
91 | include/pqueue.h | ||
92 | include/openssl/*.h | ||
93 | include/openssl/*.he | ||
94 | apps/*.c | ||
95 | apps/*.h | ||
96 | apps/*.cnf | ||
97 | apps/openssl | ||
98 | |||
99 | crypto/compat/arc4random.c | ||
100 | crypto/compat/chacha_private.h | ||
101 | crypto/compat/explicit_bzero.c | ||
102 | crypto/compat/getentropy_*.c | ||
103 | crypto/compat/reallocarray.c | ||
104 | crypto/compat/strlcat.c | ||
105 | crypto/compat/strlcpy.c | ||
106 | crypto/compat/strtonum.c | ||
107 | crypto/compat/timingsafe_bcmp.c | ||
108 | crypto/compat/timingsafe_memcmp.c | ||
109 | |||
110 | crypto/aes/ | ||
111 | crypto/asn1/ | ||
112 | crypto/bf/ | ||
113 | crypto/bio/ | ||
114 | crypto/bn/ | ||
115 | crypto/buffer/ | ||
116 | crypto/cast/ | ||
117 | crypto/chacha/ | ||
118 | crypto/cmac/ | ||
119 | crypto/comp/ | ||
120 | crypto/conf/ | ||
121 | crypto/cpt_err.c | ||
122 | crypto/cryptlib.c | ||
123 | crypto/cryptlib.h | ||
124 | crypto/cversion.c | ||
125 | crypto/des/ | ||
126 | crypto/dh/ | ||
127 | crypto/dsa/ | ||
128 | crypto/dso/ | ||
129 | crypto/ec/ | ||
130 | crypto/ecdh/ | ||
131 | crypto/ecdsa/ | ||
132 | crypto/engine/ | ||
133 | crypto/err/ | ||
134 | crypto/evp/ | ||
135 | crypto/ex_data.c | ||
136 | crypto/hmac/ | ||
137 | crypto/idea/ | ||
138 | crypto/krb5/ | ||
139 | crypto/lhash/ | ||
140 | crypto/malloc-wrapper.c | ||
141 | crypto/md32_common.h | ||
142 | crypto/md4/ | ||
143 | crypto/md5/ | ||
144 | crypto/mdc2/ | ||
145 | crypto/mem_clr.c | ||
146 | crypto/mem_dbg.c | ||
147 | crypto/modes/ | ||
148 | crypto/o_init.c | ||
149 | crypto/o_str.c | ||
150 | crypto/o_time.c | ||
151 | crypto/o_time.h | ||
152 | crypto/objects | ||
153 | crypto/ocsp/ | ||
154 | crypto/pem/ | ||
155 | crypto/pkcs12/ | ||
156 | crypto/pkcs7/ | ||
157 | crypto/poly1305/ | ||
158 | crypto/pqueue/ | ||
159 | crypto/rand/ | ||
160 | crypto/rc2/ | ||
161 | crypto/rc4/ | ||
162 | crypto/ripemd/ | ||
163 | crypto/rsa/ | ||
164 | crypto/sha/ | ||
165 | crypto/stack/ | ||
166 | crypto/ts/ | ||
167 | crypto/txt_db/ | ||
168 | crypto/ui/ | ||
169 | crypto/whrlpool/ | ||
170 | crypto/x509/ | ||
171 | crypto/x509v3/ | ||
172 | |||