Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jul 1, 2018

  1. don't install test in target install_all

    This fixes #396
    sjaeckel committed Jul 1, 2018
  2. Bump version

    sjaeckel committed Jul 1, 2018

Commits on Jun 22, 2018

  1. Update changes

    [skip ci]
    sjaeckel committed Jun 22, 2018
  2. Merge pull request #414 from libtom/fix/411

    Fix/411
    (cherry picked from commit 8972027)
    sjaeckel committed Jun 22, 2018
  3. fix-up 250eced

    sjaeckel committed Jun 22, 2018

Commits on Jun 21, 2018

  1. fix-up 719d297

    sjaeckel committed Jun 21, 2018
  2. Merge pull request #408 from libtom/pr/fix-cve-2018-12437

    ecc_sign_hash blinding CVE-2018-12437
    (cherry picked from commit 6aef5e3)
    karel-m authored and sjaeckel committed Jun 21, 2018

Commits on May 31, 2018

  1. fix testvectors for two-key 3des

    (cherry picked from commit e4a03ca)
    sjaeckel committed May 31, 2018
  2. fix "two-key 3des"-related things

    (cherry picked from commit 715103a)
    sjaeckel committed May 31, 2018
  3. no need to include wchar.h in all cases

    (cherry picked from commit a32d1af)
    sjaeckel committed May 31, 2018
  4. Merge pull request #382 from ararslan/aa/freebsd

    Make the build logic more robust for BSD systems
    (cherry picked from commit 5ab8dcf)
    sjaeckel committed May 31, 2018
  5. Merge pull request #392 from orbea/libtool

    makefile.shared: Respect LIBTOOL.
    (cherry picked from commit a528528)
    sjaeckel committed May 31, 2018
  6. there should be no need to pass CFLAGS when linking

    (cherry picked from commit 196f25e)
    sjaeckel committed May 31, 2018

Commits on Apr 13, 2018

  1. 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
    karel-m authored and sjaeckel committed Apr 13, 2018
  2. 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)
    karel-m authored and sjaeckel committed Apr 13, 2018
  3. Merge pull request #377 from libtom/pr/clang-tidy-void-return

    clang-tidy: readability-redundant-control-flow
    (cherry picked from commit 4cc8d08)
    karel-m authored and sjaeckel committed Apr 13, 2018
  4. Merge pull request #375 from libtom/pr/fix-unused-const-variable

    Fix -Wunused-const-variable in aes_tab.c
    (cherry picked from commit 5c31c3d)
    karel-m authored and sjaeckel committed Apr 13, 2018
  5. Merge pull request #373 from libtom/fix/der-recursion-limit

    implement DER recursion limit
    (cherry picked from commit af67321)
    sjaeckel committed Apr 13, 2018

Commits on Apr 6, 2018

Commits on Apr 4, 2018

  1. Merge pull request #359 from vchong/ltc_ctr

    ltc: ctr: improve performance
    (cherry picked from commit 9b80d07)
    sjaeckel committed Apr 4, 2018
  2. improve fortuna_import()

    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)
    sjaeckel committed Apr 4, 2018
  3. add comment to Fortuna docs

    (cherry picked from commit cccd1e3)
    sjaeckel committed Apr 4, 2018
  4. don't ignore additional data on SOBER128-PRNG import

    (cherry picked from commit d502869)
    sjaeckel committed Apr 4, 2018
  5. fortuna_import() shouldn't ignore additional input

    (cherry picked from commit 0c05e53)
    sjaeckel committed Apr 4, 2018
  6. ensure that fortuna has been seeded properly

    (cherry picked from commit 04ce8cf)
    sjaeckel committed Apr 4, 2018
  7. Merge pull request #351 from libtom/pr/fix-time_cipher_lrw

    LTC_EASY & time_cipher_lrw
    (cherry picked from commit ea5b6cd)
    karel-m authored and sjaeckel committed Apr 4, 2018
  8. 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)
    sjaeckel committed Apr 4, 2018

Commits on Jan 22, 2018

  1. Fix 'fixme check'

    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-...
    ```
    sjaeckel committed Jan 22, 2018
  2. Bump revision

    sjaeckel committed Jan 22, 2018
  3. Update changes

    sjaeckel committed Jan 22, 2018
  4. add -p switch to install commands in GNU makefiles

    This fixes #340
    
    [skip ci]
    
    (cherry picked from commit fc6eb3e)
    sjaeckel committed Jan 22, 2018

Commits on Jan 19, 2018

  1. 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)
    yoshizaki-sni authored and sjaeckel committed Jan 19, 2018
Older