mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6bd6091938
This adds many basic `PACKAGE_*` to Kconfig: - pkg/Kconfig - pkg/c25519/Kconfig - pkg/cayenne-lpp/Kconfig - pkg/cifra/Kconfig - pkg/cn-cbor/Kconfig - pkg/driver_atwinc15x0/Kconfig - pkg/driver_bme680/Kconfig - pkg/emlearn/Kconfig - pkg/gemmlowp/Kconfig - pkg/hacl/Kconfig - pkg/heatshrink/Kconfig - pkg/jsmn/Kconfig - pkg/libb2/Kconfig - pkg/libcose/Kconfig - pkg/libfixmath/Kconfig - pkg/libhydrogen/Kconfig - pkg/lora-serialization/Kconfig - pkg/micro-ecc/Kconfig - pkg/microcoap/Kconfig - pkg/minmea/Kconfig - pkg/monocypher/Kconfig - pkg/nanocbor/Kconfig - pkg/nanopb/Kconfig - pkg/qDSA/Kconfig - pkg/qcbor/Kconfig - pkg/relic/Kconfig - pkg/talking_leds/Kconfig - pkg/tiny-asn1/Kconfig - pkg/tinycbor/Kconfig - pkg/tinycrypt/Kconfig - pkg/tlsf/Kconfig - pkg/tweetnacl/Kconfig - pkg/u8g2/Kconfig - pkg/ubasic/Kconfig - pkg/ucglib/Kconfig - pkg/utensor/Kconfig - pkg/yxml/Kconfig
16 lines
546 B
Plaintext
16 lines
546 B
Plaintext
# Copyright (c) 2021 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config PACKAGE_LIBB2
|
|
bool "BLAKE2 cryptographic hash function package"
|
|
depends on TEST_KCONFIG
|
|
depends on !HAS_ARCH_8BIT
|
|
help
|
|
BLAKE2 is a cryptographic hash function specified in RFC 7693.
|
|
It claims to be faster than MD5, SHA-1, SHA-2, and SHA-3, yet at
|
|
least as secure as the latest standard SHA-3.
|