.gitignore 1.3 KB

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