1 1.12 riastrad # $NetBSD: Makefile,v 1.12 2020/07/26 04:25:49 riastradh Exp $ 2 1.1 pooka # 3 1.1 pooka 4 1.8 riastrad .PATH: ${.CURDIR}/../../../../crypto/adiantum \ 5 1.8 riastrad ${.CURDIR}/../../../../crypto/aes \ 6 1.7 riastrad ${.CURDIR}/../../../../crypto/blowfish \ 7 1.2 pgoyette ${.CURDIR}/../../../../crypto/camellia \ 8 1.1 pooka ${.CURDIR}/../../../../crypto/cast128 \ 9 1.11 riastrad ${.CURDIR}/../../../../crypto/chacha \ 10 1.1 pooka ${.CURDIR}/../../../../crypto/des \ 11 1.1 pooka ${.CURDIR}/../../../../crypto/skipjack 12 1.1 pooka 13 1.1 pooka LIB= rumpkern_crypto 14 1.4 pooka COMMENT=Cryptographic routines 15 1.1 pooka 16 1.8 riastrad # Adiantum 17 1.8 riastrad SRCS+= adiantum.c 18 1.8 riastrad SRCS+= adiantum_selftest.c 19 1.8 riastrad 20 1.12 riastrad # AES 21 1.12 riastrad SRCS+= aes_bear.c 22 1.12 riastrad SRCS+= aes_ccm.c 23 1.12 riastrad SRCS+= aes_ccm_mbuf.c 24 1.12 riastrad SRCS+= aes_ct.c 25 1.12 riastrad SRCS+= aes_ct_dec.c 26 1.12 riastrad SRCS+= aes_ct_enc.c 27 1.12 riastrad SRCS+= aes_impl.c 28 1.12 riastrad SRCS+= aes_selftest.c 29 1.12 riastrad 30 1.1 pooka # blowfish 31 1.2 pgoyette SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c 32 1.2 pgoyette 33 1.2 pgoyette # camellia 34 1.2 pgoyette SRCS+= camellia.c camellia-api.c 35 1.1 pooka 36 1.12 riastrad # cast128 37 1.12 riastrad SRCS+= cast128.c 38 1.12 riastrad 39 1.10 riastrad # ChaCha 40 1.10 riastrad SRCS+= chacha_impl.c 41 1.10 riastrad SRCS+= chacha_ref.c 42 1.10 riastrad SRCS+= chacha_selftest.c 43 1.10 riastrad 44 1.1 pooka # DES 45 1.2 pgoyette SRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c 46 1.1 pooka 47 1.1 pooka # skipjack 48 1.1 pooka SRCS+= skipjack.c 49 1.1 pooka 50 1.1 pooka .include <bsd.lib.mk> 51 1.1 pooka .include <bsd.klinks.mk> 52