busybox/libbb/yescrypt/y.c
Denys Vlasenko 63025e8bca libbb/yescrypt: remove forgotten SHA256 HMAC header file
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-07 10:51:13 +02:00

16 lines
401 B
C

/*
* The compilation unit for yescrypt-related code.
*
* Copyright (C) 2025 by Denys Vlasenko <vda.linux@googlemail.com>
*
* Licensed under GPLv2, see file LICENSE in this source tree.
*/
//kbuild:lib-$(CONFIG_USE_BB_CRYPT_YES) += y.o
#include "libbb.h"
#define YESCRYPT_INTERNAL
#include "alg-yescrypt.h"
#include "alg-sha256.c"
#include "alg-yescrypt-kdf.c"
#include "alg-yescrypt-common.c"