PR/38728: Tomoyuki Okazaki: add support Camellia for openssl

This commit is contained in:
christos 2008-05-26 16:51:07 +00:00
parent 90318d80f4
commit 3c5f3e21af
4 changed files with 17 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.50 2008/05/10 20:14:20 christos Exp $
# $NetBSD: Makefile,v 1.51 2008/05/26 16:51:07 christos Exp $
# RCSid:
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
@ -75,7 +75,7 @@ INCS+= aes.h asn1.h asn1_mac.h asn1t.h bio.h blowfish.h bn.h \
obj_mac.h objects.h ocsp.h opensslconf.h opensslv.h ossl_typ.h \
pem.h pem2.h pkcs12.h pkcs7.h rand.h rc2.h rc4.h ripemd.h \
rsa.h safestack.h sha.h stack.h store.h symhacks.h ts.h txt_db.h \
ui.h ui_compat.h x509.h x509_vfy.h x509v3.h pqueue.h
ui.h ui_compat.h x509.h x509_vfy.h x509v3.h pqueue.h camellia.h
# des_old.h
# IDEA - patented, but we install the header anyways

View File

@ -0,0 +1,11 @@
# $NetBSD: camellia.inc,v 1.1 2008/05/26 16:51:07 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/camellia
CAMELLIA_SRCS = camellia.c cmll_misc.c \
cmll_ecb.c cmll_cbc.c cmll_cfb.c cmll_ofb.c cmll_ctr.c
SRCS += ${CAMELLIA_SRCS}
.for cryptosrc in ${CAMELLIA_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/camellia
.endfor

View File

@ -1,5 +1,5 @@
# $NetBSD: shlib_version,v 1.13 2008/05/09 21:52:18 christos Exp $
# $NetBSD: shlib_version,v 1.14 2008/05/26 16:51:07 christos Exp $
# Remember to update distrib/sets/lists/base/shl.* when changing
#
major=4
minor=0
minor=1

View File

@ -1,10 +1,10 @@
# $NetBSD: srcs.inc,v 1.14 2008/05/09 21:52:18 christos Exp $
# $NetBSD: srcs.inc,v 1.15 2008/05/26 16:51:07 christos Exp $
CRYPTOINCS= \
aes.inc asn1.inc bf.inc bio.inc bn.inc buffer.inc cast.inc \
cms.inc comp.inc conf.inc crypto.inc des.inc dh.inc dsa.inc dso.inc \
ec.inc ecdh.inc ecdsa.inc engine.inc err.inc evp.inc hmac.inc \
krb5.inc lhash.inc \
krb5.inc lhash.inc camellia.inc \
md2.inc md4.inc md5.inc objects.inc ocsp.inc pem.inc \
pkcs12.inc pkcs7.inc pqueue.inc rand.inc rc2.inc rc4.inc ripemd.inc \
rsa.inc sha.inc stack.inc store.inc txt_db.inc ts.inc ui.inc x509.inc \