.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # suppress compiler/linker output
  2. *.[oa]
  3. *.obj
  4. *.dylib*
  5. *.dll*
  6. *.so*
  7. [Dd]ebug/
  8. [Rr]elease/
  9. /MSVC_*
  10. .bin/
  11. # release files
  12. /libtomcrypt-*
  13. /crypt-*
  14. pre_gen/
  15. # suppress output of build process
  16. gcc_[12].txt
  17. testok.txt
  18. test_*.txt
  19. tv.txt
  20. *_tv.txt
  21. doxygen/
  22. doc/crypt.pdf
  23. doc/refman.pdf
  24. # *nix/windows test executables
  25. ltc-*
  26. aesgcm
  27. aesgcm.exe
  28. constants
  29. constants.exe
  30. crypt
  31. crypt.exe
  32. der_print_flexi
  33. der_print_flexi.exe
  34. hashsum
  35. hashsum.exe
  36. multi
  37. multi.exe
  38. openssl-enc
  39. openssl-enc.exe
  40. openssh-privkey
  41. openssh-privkey.exe
  42. pem-info
  43. pem-info.exe
  44. sizes
  45. sizes.exe
  46. small
  47. small.exe
  48. test
  49. test.exe
  50. tv_gen
  51. tv_gen.exe
  52. timing
  53. timing.exe
  54. x509_verify
  55. x509_verify.exe
  56. # Visual Studio special files
  57. # ignore user specific settings
  58. *.user
  59. *.suo
  60. # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
  61. *.ncb
  62. # ignore VS intermediate and program database files
  63. *.idb
  64. *.pdb
  65. # Eclipse special files
  66. .project
  67. .cproject
  68. .settings/
  69. # KDevelop special files
  70. *.kdev4
  71. # macOS special files
  72. .DS_Store
  73. # other special files
  74. showlibs # symlink to .libs
  75. # oops ;) but we don't want them to appear in the repository...
  76. *.stackdump
  77. *.core
  78. # misc
  79. *.rej
  80. *.patch
  81. *.diff
  82. *.orig
  83. *.out
  84. *.ll
  85. *.gcda
  86. *.gcno
  87. *.gcov
  88. libtomcrypt.pc
  89. # output from doc generation
  90. doxygen/
  91. *.dvi
  92. *.log
  93. *.aux
  94. *.toc
  95. *.idx
  96. *.ilg
  97. *.ind
  98. *.out
  99. *.lof
  100. *.bak
  101. coverage*/
  102. coverage*.info
  103. # coverity intermediate directory etc.
  104. cov-int/
  105. .coverity_*
  106. libtomcrypt.lzma
  107. # cmake build directories
  108. build*/