diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-09-18 16:35:00 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-09-18 16:35:00 +0000 |
commit | d1baabbe39d2fec309554d81e0893f1f57cd9864 (patch) | |
tree | 44c6a5cb366c653bdeb0fb52a1ee8567431644c6 /sys/arch/sparc64/stand/ofwboot | |
parent | aff42c2450ae808acf14174033f9b4ab37ff2181 (diff) |
Add bcrypt pbkdf support to the softraid crypto boot loader code.
Based on a diff from djm@
Diffstat (limited to 'sys/arch/sparc64/stand/ofwboot')
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/Makefile b/sys/arch/sparc64/stand/ofwboot/Makefile index e4fc22f2238..073a0d1b71e 100644 --- a/sys/arch/sparc64/stand/ofwboot/Makefile +++ b/sys/arch/sparc64/stand/ofwboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 2016/09/11 17:53:26 jsing Exp $ +# $OpenBSD: Makefile,v 1.24 2016/09/18 16:34:59 jsing Exp $ # $NetBSD: Makefile,v 1.2 2001/03/04 14:50:05 mrg Exp $ CURDIR= ${.CURDIR} @@ -31,8 +31,8 @@ SRCS+= strlcpy.c strcmp.c strlcat.c strlen.c .if ${SOFTRAID:L} == "yes" .PATH: ${S}/lib/libsa -SRCS+= aes_xts.c explicit_bzero.c hmac_sha1.c pkcs5_pbkdf2.c \ - rijndael.c sha1.c softraid.c +SRCS+= aes_xts.c bcrypt_pbkdf.c blowfish.c explicit_bzero.c \ + hmac_sha1.c pkcs5_pbkdf2.c rijndael.c sha1.c sha2.c softraid.c .endif CWARNFLAGS+= -Wno-main |