1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #16542 from fjmolinas/pr_bump_libcose

pkg/libcose: bump version
This commit is contained in:
benpicco 2021-06-10 14:31:25 +02:00 committed by GitHub
commit 13eb3f05c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
PKG_NAME=libcose
PKG_URL=https://github.com/bergzand/libcose
PKG_VERSION=3fdf1238987b6aeec113b1872e56307893feeae7
PKG_VERSION=2929fdce7affbd5bb9db201370d95d8f7cf680f9
PKG_LICENSE=LGPL
include $(RIOTBASE)/pkg/pkg.mk

View File

@ -35,11 +35,15 @@
* USEMODULE += libcose_crypt_hacl
* USEMODULE += libcose_crypt_monocypher
* USEMODULE += libcose_crypt_c25519
* USEMODULE += libcose_crypt_tinycrypt
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* The selection of pseudomodules determines the available algorithms:
*
* * @ref pkg_hacl "HACL" and @ref pkg_monocypher "Monocypher" both provide ChaCha20-Poly1305 and Ed25519.
* * @ref pkg_c25519 "C25519" only provides the Ed25519 algorithm.
* * @ref pkg_tinycrypt "TINYCRYPT" provides AES-CCM-16-64-128, AES-CCM-16-128-128
* ECDSA and ES256 as well as EC NIST P-256 curve support.
*
* Some backend may conflict, others might be complementary.
*/