.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. openssh-privkey
  35. openssh-privkey.exe
  36. sizes
  37. sizes.exe
  38. small
  39. small.exe
  40. test
  41. test.exe
  42. tv_gen
  43. tv_gen.exe
  44. timing
  45. timing.exe
  46. # Visual Studio special files
  47. # ignore user specific settings
  48. *.user
  49. *.suo
  50. # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
  51. *.ncb
  52. # ignore VS intermediate and program database files
  53. *.idb
  54. *.pdb
  55. # Eclipse special files
  56. .project
  57. .cproject
  58. .settings/
  59. # macOS special files
  60. .DS_Store
  61. # other special files
  62. showlibs # symlink to .libs
  63. # oops ;) but we don't want them to appear in the repository...
  64. *.stackdump
  65. *.core
  66. # misc
  67. *.rej
  68. *.patch
  69. *.diff
  70. *.orig
  71. *.out
  72. *.ll
  73. *.gcda
  74. *.gcno
  75. *.gcov
  76. libtomcrypt.pc
  77. # output from doc generation
  78. doxygen/
  79. *.dvi
  80. *.log
  81. *.aux
  82. *.toc
  83. *.idx
  84. *.ilg
  85. *.ind
  86. *.out
  87. *.lof
  88. *.bak
  89. coverage/
  90. coverage*.info
  91. # coverity intermediate directory etc.
  92. cov-int/
  93. .coverity_*
  94. libtomcrypt.lzma