1 1.11 riastrad # $NetBSD: Makefile,v 1.11 2020/07/26 04:25:14 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.1 pooka # blowfish 21 1.2 pgoyette SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c 22 1.2 pgoyette 23 1.2 pgoyette # camellia 24 1.2 pgoyette SRCS+= camellia.c camellia-api.c 25 1.1 pooka 26 1.10 riastrad # ChaCha 27 1.10 riastrad SRCS+= chacha_impl.c 28 1.10 riastrad SRCS+= chacha_ref.c 29 1.10 riastrad SRCS+= chacha_selftest.c 30 1.10 riastrad 31 1.1 pooka # cast128 32 1.1 pooka SRCS+= cast128.c 33 1.1 pooka 34 1.1 pooka # DES 35 1.2 pgoyette SRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c 36 1.1 pooka 37 1.7 riastrad # AES 38 1.7 riastrad SRCS+= aes_bear.c 39 1.11 riastrad SRCS+= aes_ccm.c 40 1.11 riastrad SRCS+= aes_ccm_mbuf.c 41 1.7 riastrad SRCS+= aes_ct.c 42 1.7 riastrad SRCS+= aes_ct_dec.c 43 1.7 riastrad SRCS+= aes_ct_enc.c 44 1.7 riastrad SRCS+= aes_impl.c 45 1.7 riastrad SRCS+= aes_selftest.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