1#         $NetBSD: Makefile,v 1.10 2016/01/26 23:12:15 pooka Exp $
2#
3
4.PATH:    ${.CURDIR}/../../../../opencrypto
5
6LIB=      rumpdev_opencrypto
7COMMENT=OpenCrypto, incl. /dev/crypto
8
9IOCONF=   OPENCRYPTO.ioconf
10SRCS=     opencrypto_component.c
11
12# Sources for crypto framework
13
14SRCS+=    criov.c
15SRCS+=    crypto.c
16SRCS+=    xform.c
17
18# Sources for crypto device, for userland access
19
20SRCS+=    cryptodev.c
21SRCS+=    ocryptodev.c
22
23# Sources for swcrypto device to access opencrypto software algorithms
24# (Other algorithms are in rumpkern_crypto)
25
26SRCS+=    aesxcbcmac.c
27SRCS+=    cryptosoft.c
28SRCS+=    deflate.c
29SRCS+=    gmac.c
30
31.include <bsd.lib.mk>
32.include <bsd.klinks.mk>
33