master
Name already in use
Commits on Jul 1, 2018
Commits on Jun 22, 2018
-
Merge pull request #414 from libtom/fix/411
Fix/411 (cherry picked from commit 8972027)
Commits on May 31, 2018
-
fix testvectors for two-key 3des
(cherry picked from commit e4a03ca)
-
fix "two-key 3des"-related things
(cherry picked from commit 715103a)
-
no need to include wchar.h in all cases
(cherry picked from commit a32d1af)
-
Merge pull request #382 from ararslan/aa/freebsd
Make the build logic more robust for BSD systems (cherry picked from commit 5ab8dcf)
-
Merge pull request #392 from orbea/libtool
makefile.shared: Respect LIBTOOL. (cherry picked from commit a528528)
-
there should be no need to pass CFLAGS when linking
(cherry picked from commit 196f25e)
Commits on Apr 13, 2018
-
Merge pull request #379 from libtom/pr/clang-tidy-misc-misplaced-wide…
…ning-cast clang-tidy: misc-misplaced-widening-cast (cherry picked from commit 248352c) With back-ported patch from src/misc/copy_or_zeromem.c back to src/encauth/ccm/ccm_memory.c
-
Merge pull request #378 from libtom/pr/clang-tidy-misc-suspicious-str…
…ing-compare clang-tidy: misc-suspicious-string-compare (cherry picked from commit 24f933d)
-
Merge pull request #377 from libtom/pr/clang-tidy-void-return
clang-tidy: readability-redundant-control-flow (cherry picked from commit 4cc8d08)
-
Merge pull request #375 from libtom/pr/fix-unused-const-variable
Fix -Wunused-const-variable in aes_tab.c (cherry picked from commit 5c31c3d)
-
Merge pull request #373 from libtom/fix/der-recursion-limit
implement DER recursion limit (cherry picked from commit af67321)
Commits on Apr 6, 2018
Commits on Apr 4, 2018
-
-
Merge pull request #359 from vchong/ltc_ctr
ltc: ctr: improve performance (cherry picked from commit 9b80d07)
-
This makes fortuna_import() kinda compliant to the "Update seed file" behavior of the original paper. It differs from the original behavior in that it allows to import seed files which are larger than 64 bytes. (cherry picked from commit 39d4a14)
-
don't ignore additional data on SOBER128-PRNG import
(cherry picked from commit d502869)
-
fortuna_import() shouldn't ignore additional input
(cherry picked from commit 0c05e53)
-
ensure that fortuna has been seeded properly
(cherry picked from commit 04ce8cf)
-
Merge pull request #351 from libtom/pr/fix-time_cipher_lrw
LTC_EASY & time_cipher_lrw (cherry picked from commit ea5b6cd)
-
Merge pull request #350 from libtom/fix/no-file-warnings
Fix warnings in `XMAC_file()` functions when compiling with `LTC_NO_FILE`. (cherry picked from commit 11cda2e)
Commits on Jan 22, 2018
-
-
The error produced by `make zipup` - but ignored by make - was: ``` ... fixme check makefile_include.mk:448: recipe for target 'zipup' failed make: [zipup] Error 123 (ignored) mkdir -p libtomcrypt-... ```
-
-
-
Commits on Jan 19, 2018
-
ltc: ctr: update pt and ct after acceleration
Problem occurs in the condition of the following case: 1st decryption: Decrypt a ciphertext whose length is a multiple of the block size (16B) (len = n * block_size) 2nd decryption: Decrypt the continuing ciphertext whose length is not a multiple of the block size (len = m * block_size + l) In this case accel_ctr_encrypt() is firstly used at the 2nd decryption. If pt and ct are not updated, the top (l = len % block_size) bytes of decryption result are sometimes destroyed. From: Tetsuya Yoshizaki <yoshizaki.tetsuya@socionext.com> Signed-off-by: Tetsuya Yoshizaki <yoshizaki.tetsuya@socionext.com> Signed-off-by: Victor Chong <victor.chong@linaro.org> (cherry picked from commit d1d3ae2)