.gitignore 4.6 KB

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