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/i386/stand | |
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/i386/stand')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 6 | ||||
-rw-r--r-- | sys/arch/i386/stand/cdboot/Makefile | 6 | ||||
-rw-r--r-- | sys/arch/i386/stand/pxeboot/Makefile | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 1cd16b18a89..889ad6b99b3 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.63 2016/09/11 17:52:47 jsing Exp $ +# $OpenBSD: Makefile,v 1.64 2016/09/18 16:34:59 jsing Exp $ COPTS?= MAN?= boot.8 @@ -44,8 +44,8 @@ SRCS+= close.c closeall.c cons.c cread.c dev.c disklabel.c dkcksum.c fstat.c \ SRCS+= elf32.c elf64.c loadfile.c SRCS+= ufs.c .if ${SOFTRAID:L} == "yes" -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 .PATH: ${S}/lib/libkern diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index 3964fecb2b6..c832366610e 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.28 2016/09/11 17:52:47 jsing Exp $ +# $OpenBSD: Makefile,v 1.29 2016/09/18 16:34:59 jsing Exp $ MAN= cdboot.8 @@ -34,8 +34,8 @@ SRCS+= close.c closeall.c cons.c cread.c dev.c disklabel.c dkcksum.c fstat.c \ lseek.c open.c read.c readdir.c stat.c SRCS+= elf32.c elf64.c loadfile.c SRCS+= cd9660.c ufs.c -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 .PATH: ${S}/lib/libkern/arch/i386 SRCS+= moddi3.c divdi3.c qdivrem.c diff --git a/sys/arch/i386/stand/pxeboot/Makefile b/sys/arch/i386/stand/pxeboot/Makefile index c0e7ac2cf0a..1391225f253 100644 --- a/sys/arch/i386/stand/pxeboot/Makefile +++ b/sys/arch/i386/stand/pxeboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.25 2016/09/11 17:52:47 jsing Exp $ +# $OpenBSD: Makefile,v 1.26 2016/09/18 16:34:59 jsing Exp $ MAN= pxeboot.8 @@ -36,8 +36,8 @@ SRCS+= close.c closeall.c cons.c cread.c dev.c disklabel.c dkcksum.c fstat.c \ SRCS+= elf32.c elf64.c loadfile.c SRCS+= nfs.c ufs.c tftp.c SRCS+= bootp.c ether.c net.c netif.c rpc.c -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 .PATH: ${S}/lib/libkern/arch/i386 SRCS+= divdi3.c moddi3.c qdivrem.c udivdi3.c umoddi3.c |