
- crypto/external/bsd/heimdal - crypto/external/bsd/libsaslc - crypto/external/bsd/netpgp - crypto/external/bsd/openssl Change-Id: I91dbf05f33e637edf5b9bb408d5baddd7ba8cf75
21 lines
499 B
PHP
21 lines
499 B
PHP
# $NetBSD: rc5.inc,v 1.1 2009/07/19 23:30:44 christos Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/rc5/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/rc5
|
|
|
|
|
|
RC5_SRCS = rc5_ecb.c rc5cfb64.c rc5ofb64.c
|
|
# RC5 is a patented algorithm; abort().
|
|
# see ../libcrypto_rc5
|
|
RC5_SRCS += rc5_skey_dummy.c rc5_enc_dummy.c
|
|
#SRCS+=rc5_skey.c rc5_enc.c
|
|
SRCS += ${RC5_SRCS}
|
|
|
|
.for cryptosrc in ${RC5_SRCS}
|
|
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rc5
|
|
.endfor
|