Rename argon.c to argon_wrapper.c so we can use 'argon' as the library name. Move the include file into the normal place. Add SPDX tags but otherwise keep the files as is. The code style uses spaces instead of tabs and has other differences with U-Boot Co-developed-by: Claude <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com>
11 lines
269 B
Makefile
11 lines
269 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2025 Canonical Ltd
|
|
#
|
|
# Argon2 password hashing library
|
|
# Based on PHC winner: https://github.com/P-H-C/phc-winner-argon2
|
|
|
|
obj-$(CONFIG_ARGON2) += argon2.o
|
|
|
|
argon2-y := argon2_wrapper.o core.o ref.o blake2/blake2b.o
|