.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. # Ignore editor artefacts
  2. /.dir-locals.el
  3. # Top level excludes
  4. /Makefile.in
  5. /Makefile
  6. /MINFO
  7. /TABLE
  8. /*.pc
  9. /rehash.time
  10. /inc.*
  11. /makefile.*
  12. /out.*
  13. /tmp.*
  14. /configdata.pm
  15. # Links under apps
  16. /apps/CA.pl
  17. /apps/tsget
  18. /apps/tsget.pl
  19. /apps/md4.c
  20. # Auto generated headers
  21. /crypto/buildinf.h
  22. /include/crypto/*_conf.h
  23. /include/openssl/asn1.h
  24. /include/openssl/asn1t.h
  25. /include/openssl/bio.h
  26. /include/openssl/cmp.h
  27. /include/openssl/cms.h
  28. /include/openssl/conf.h
  29. /include/openssl/configuration.h
  30. /include/openssl/crmf.h
  31. /include/openssl/crypto.h
  32. /include/openssl/ct.h
  33. /include/openssl/err.h
  34. /include/openssl/ess.h
  35. /include/openssl/fipskey.h
  36. /include/openssl/lhash.h
  37. /include/openssl/ocsp.h
  38. /include/openssl/opensslv.h
  39. /include/openssl/pkcs12.h
  40. /include/openssl/pkcs7.h
  41. /include/openssl/safestack.h
  42. /include/openssl/srp.h
  43. /include/openssl/ssl.h
  44. /include/openssl/ui.h
  45. /include/openssl/x509.h
  46. /include/openssl/x509v3.h
  47. /include/openssl/x509_vfy.h
  48. # Auto generated doc files
  49. doc/man1/openssl-*.pod
  50. # Auto generated der files
  51. providers/common/der/der_digests_gen.c
  52. providers/common/der/der_dsa_gen.c
  53. providers/common/der/der_ec_gen.c
  54. providers/common/der/der_ecx_gen.c
  55. providers/common/der/der_rsa_gen.c
  56. providers/common/der/der_wrap_gen.c
  57. providers/common/der/der_sm2_gen.c
  58. providers/common/include/prov/der_dsa.h
  59. providers/common/include/prov/der_ec.h
  60. providers/common/include/prov/der_ecx.h
  61. providers/common/include/prov/der_rsa.h
  62. providers/common/include/prov/der_digests.h
  63. providers/common/include/prov/der_wrap.h
  64. providers/common/include/prov/der_sm2.h
  65. # error code files
  66. /crypto/err/openssl.txt.old
  67. /engines/e_afalg.txt.old
  68. /engines/e_capi.txt.old
  69. /engines/e_dasync.txt.old
  70. /engines/e_ossltest.txt.old
  71. # Executables
  72. /apps/openssl
  73. /test/sha256t
  74. /test/sha512t
  75. /test/gost2814789t
  76. /test/ssltest_old
  77. /test/*test
  78. /test/fips_aesavs
  79. /test/fips_desmovs
  80. /test/fips_dhvs
  81. /test/fips_drbgvs
  82. /test/fips_dssvs
  83. /test/fips_ecdhvs
  84. /test/fips_ecdsavs
  85. /test/fips_rngvs
  86. /test/fips_test_suite
  87. /test/ssltest_old
  88. /test/x509aux
  89. /test/v3ext
  90. /test/versions
  91. /test/ossl_shim/ossl_shim
  92. /test/rsa_complex
  93. /test/confdump
  94. /test/bio_prefix_text
  95. /test/evp_extra_test2
  96. /test/threadstest_fips
  97. # Certain files that get created by tests on the fly
  98. /test-runs
  99. /test/buildtest_*
  100. /test/provider_internal_test.cnf
  101. /test/fipsmodule.cnf
  102. /providers/fipsmodule.cnf
  103. # Fuzz stuff.
  104. # Anything without an extension is an executable on Unix, so we keep files
  105. # with extensions. And we keep the corpora subddir versioned as well.
  106. # Anything more generic with extensions that should be ignored will be taken
  107. # care of by general ignores for those extensions (*.o, *.obj, *.exe, ...)
  108. /fuzz/*
  109. !/fuzz/README*
  110. !/fuzz/corpora
  111. !/fuzz/*.*
  112. # Misc auto generated files
  113. /doc/man7/openssl_user_macros.pod
  114. /tools/c_rehash
  115. /tools/c_rehash.pl
  116. /util/shlib_wrap.sh
  117. /tags
  118. /TAGS
  119. *.map
  120. *.ld
  121. /apps/progs.c
  122. /apps/progs.h
  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. # Files created on other branches that are not held in git, and are not
  141. # needed on this branch
  142. /include/openssl/asn1_mac.h
  143. /include/openssl/des_old.h
  144. /include/openssl/fips.h
  145. /include/openssl/fips_rand.h
  146. /include/openssl/krb5_asn.h
  147. /include/openssl/kssl.h
  148. /include/openssl/pq_compat.h
  149. /include/openssl/ssl23.h
  150. /include/openssl/tmdiff.h
  151. /include/openssl/ui_compat.h
  152. /test/fips_aesavs.c
  153. /test/fips_desmovs.c
  154. /test/fips_dsatest.c
  155. /test/fips_dssvs.c
  156. /test/fips_hmactest.c
  157. /test/fips_randtest.c
  158. /test/fips_rngvs.c
  159. /test/fips_rsagtest.c
  160. /test/fips_rsastest.c
  161. /test/fips_rsavtest.c
  162. /test/fips_shatest.c
  163. /test/fips_test_suite.c
  164. /test/shatest.c
  165. # Generated docs directories
  166. /doc/html
  167. /doc/man
  168. ##### Generic patterns
  169. # Auto generated assembly language source files
  170. *.s
  171. !/crypto/*/asm/*.s
  172. /crypto/arm*.S
  173. /crypto/*/*.S
  174. *.asm
  175. !/crypto/*/asm/*.asm
  176. # Object files
  177. *.o
  178. *.obj
  179. # editor artefacts
  180. *.swp
  181. .#*
  182. \#*#
  183. *~
  184. # Certificate symbolic links
  185. *.0
  186. # All kinds of libraries and executables
  187. *.a
  188. *.so
  189. *.so.*
  190. *.dylib
  191. *.dylib.*
  192. *.dll
  193. *.dll.*
  194. *.exe
  195. *.pyc
  196. *.exp
  197. *.lib
  198. *.pdb
  199. *.tds
  200. *.ilk
  201. *.def
  202. *.rc
  203. *.res
  204. # Misc generated stuff
  205. Makefile.save
  206. /crypto/**/lib
  207. /engines/**/lib
  208. /ssl/**/lib
  209. *.bak
  210. cscope.*
  211. *.d
  212. *.d.tmp
  213. pod2htmd.tmp
  214. MAKE0[0-9][0-9][0-9].@@@
  215. # Windows manifest files
  216. *.manifest
  217. doc-nits