You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2017/08/30 15:11:32 UTC

[mynewt-core] branch master updated (deaba8d -> 7cf9277)

This is an automated email from the ASF dual-hosted git repository.

janc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from deaba8d  Merge pull request #506 from ccollins476ad/os-shell-null
     add c173f78  Revert "nimble/host: Fix build with new TinyCrypt"
     add 36dba3d  Revert "Update TinyCrypt library to version 0.2.7"
     new 7cf9277  Merge pull request #510 from sjanc/tc_revert

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 crypto/tinycrypt/AUTHORS                           |   15 -
 crypto/tinycrypt/LICENSE                           |    5 +-
 crypto/tinycrypt/README                            |    4 +-
 crypto/tinycrypt/VERSION                           |    2 +-
 crypto/tinycrypt/documentation/tinycrypt.rst       |  352 ------
 crypto/tinycrypt/include/tinycrypt/aes.h           |   25 +-
 crypto/tinycrypt/include/tinycrypt/cbc_mode.h      |   16 +-
 crypto/tinycrypt/include/tinycrypt/ccm_mode.h      |   36 +-
 crypto/tinycrypt/include/tinycrypt/cmac_mode.h     |   20 +-
 crypto/tinycrypt/include/tinycrypt/constants.h     |   10 +-
 crypto/tinycrypt/include/tinycrypt/ctr_mode.h      |    8 +-
 crypto/tinycrypt/include/tinycrypt/ctr_prng.h      |   35 +-
 crypto/tinycrypt/include/tinycrypt/ecc.h           |  595 +++-------
 crypto/tinycrypt/include/tinycrypt/ecc_dh.h        |   77 +-
 crypto/tinycrypt/include/tinycrypt/ecc_dsa.h       |   78 +-
 .../include/tinycrypt/ecc_platform_specific.h      |   81 --
 crypto/tinycrypt/include/tinycrypt/hmac.h          |   19 +-
 crypto/tinycrypt/include/tinycrypt/hmac_prng.h     |   24 +-
 crypto/tinycrypt/include/tinycrypt/sha256.h        |   14 +-
 crypto/tinycrypt/include/tinycrypt/utils.h         |   12 +-
 crypto/tinycrypt/src/aes_decrypt.c                 |   22 +-
 crypto/tinycrypt/src/aes_encrypt.c                 |   36 +-
 crypto/tinycrypt/src/cbc_mode.c                    |   15 +-
 crypto/tinycrypt/src/ccm_mode.c                    |   66 +-
 crypto/tinycrypt/src/cmac_mode.c                   |   18 +-
 crypto/tinycrypt/src/ctr_mode.c                    |   10 +-
 crypto/tinycrypt/src/ctr_prng.c                    |  129 ++-
 crypto/tinycrypt/src/ecc.c                         | 1204 +++++++-------------
 crypto/tinycrypt/src/ecc_dh.c                      |  211 ++--
 crypto/tinycrypt/src/ecc_dsa.c                     |  294 +----
 crypto/tinycrypt/src/ecc_platform_specific.c       |  105 --
 crypto/tinycrypt/src/hmac.c                        |   40 +-
 crypto/tinycrypt/src/hmac_prng.c                   |   40 +-
 crypto/tinycrypt/src/sha256.c                      |   48 +-
 crypto/tinycrypt/src/utils.c                       |   20 +-
 net/nimble/host/src/ble_sm_alg.c                   |   57 +-
 net/nimble/host/src/ble_sm_priv.h                  |    4 +-
 net/nimble/host/src/ble_sm_sc.c                    |   34 +-
 38 files changed, 1221 insertions(+), 2560 deletions(-)
 delete mode 100644 crypto/tinycrypt/AUTHORS
 delete mode 100644 crypto/tinycrypt/documentation/tinycrypt.rst
 delete mode 100644 crypto/tinycrypt/include/tinycrypt/ecc_platform_specific.h
 delete mode 100644 crypto/tinycrypt/src/ecc_platform_specific.c

-- 
To stop receiving notification emails like this one, please contact
['"commits@mynewt.apache.org" <co...@mynewt.apache.org>'].

[mynewt-core] 01/01: Merge pull request #510 from sjanc/tc_revert

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 7cf9277d30f4322ecff36543bf01782798106a04
Merge: deaba8d 36dba3d
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Wed Aug 30 17:11:30 2017 +0200

    Merge pull request #510 from sjanc/tc_revert
    
    Revert update of TinyCrypt library

 crypto/tinycrypt/AUTHORS                           |   15 -
 crypto/tinycrypt/LICENSE                           |    5 +-
 crypto/tinycrypt/README                            |    4 +-
 crypto/tinycrypt/VERSION                           |    2 +-
 crypto/tinycrypt/documentation/tinycrypt.rst       |  352 ------
 crypto/tinycrypt/include/tinycrypt/aes.h           |   25 +-
 crypto/tinycrypt/include/tinycrypt/cbc_mode.h      |   16 +-
 crypto/tinycrypt/include/tinycrypt/ccm_mode.h      |   36 +-
 crypto/tinycrypt/include/tinycrypt/cmac_mode.h     |   20 +-
 crypto/tinycrypt/include/tinycrypt/constants.h     |   10 +-
 crypto/tinycrypt/include/tinycrypt/ctr_mode.h      |    8 +-
 crypto/tinycrypt/include/tinycrypt/ctr_prng.h      |   35 +-
 crypto/tinycrypt/include/tinycrypt/ecc.h           |  595 +++-------
 crypto/tinycrypt/include/tinycrypt/ecc_dh.h        |   77 +-
 crypto/tinycrypt/include/tinycrypt/ecc_dsa.h       |   78 +-
 .../include/tinycrypt/ecc_platform_specific.h      |   81 --
 crypto/tinycrypt/include/tinycrypt/hmac.h          |   19 +-
 crypto/tinycrypt/include/tinycrypt/hmac_prng.h     |   24 +-
 crypto/tinycrypt/include/tinycrypt/sha256.h        |   14 +-
 crypto/tinycrypt/include/tinycrypt/utils.h         |   12 +-
 crypto/tinycrypt/src/aes_decrypt.c                 |   22 +-
 crypto/tinycrypt/src/aes_encrypt.c                 |   36 +-
 crypto/tinycrypt/src/cbc_mode.c                    |   15 +-
 crypto/tinycrypt/src/ccm_mode.c                    |   66 +-
 crypto/tinycrypt/src/cmac_mode.c                   |   18 +-
 crypto/tinycrypt/src/ctr_mode.c                    |   10 +-
 crypto/tinycrypt/src/ctr_prng.c                    |  129 ++-
 crypto/tinycrypt/src/ecc.c                         | 1204 +++++++-------------
 crypto/tinycrypt/src/ecc_dh.c                      |  211 ++--
 crypto/tinycrypt/src/ecc_dsa.c                     |  294 +----
 crypto/tinycrypt/src/ecc_platform_specific.c       |  105 --
 crypto/tinycrypt/src/hmac.c                        |   40 +-
 crypto/tinycrypt/src/hmac_prng.c                   |   40 +-
 crypto/tinycrypt/src/sha256.c                      |   48 +-
 crypto/tinycrypt/src/utils.c                       |   20 +-
 net/nimble/host/src/ble_sm_alg.c                   |   57 +-
 net/nimble/host/src/ble_sm_priv.h                  |    4 +-
 net/nimble/host/src/ble_sm_sc.c                    |   34 +-
 38 files changed, 1221 insertions(+), 2560 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@mynewt.apache.org" <co...@mynewt.apache.org>.