diff options
author | 2004-01-23 17:02:25 +0000 | |
---|---|---|
committer | 2004-01-23 17:02:25 +0000 | |
commit | 0335640dbffb19e6955d16d532b097a948f022ef (patch) | |
tree | 54665e2a5234b5e4886276febf7f41f361911a6d /lib/libssl/crypto | |
parent | evp api and manual page for acss (diff) | |
download | wireguard-openbsd-0335640dbffb19e6955d16d532b097a948f022ef.tar.xz wireguard-openbsd-0335640dbffb19e6955d16d532b097a948f022ef.zip |
enable acss.
ok @deraadt @markus
Also bump minor version.
ok @deraadt
Diffstat (limited to 'lib/libssl/crypto')
-rw-r--r-- | lib/libssl/crypto/Makefile | 8 | ||||
-rw-r--r-- | lib/libssl/crypto/shlib_version | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index 330d32046a9..c5f6eb86345 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2003/11/19 21:06:45 millert Exp $ +# $OpenBSD: Makefile,v 1.34 2004/01/23 17:02:25 hshoexer Exp $ LIB= crypto @@ -42,6 +42,7 @@ SRCS+= sha_dgst.c sha1dgst.c sha_one.c sha1_one.c #SRCS+= mdc2dgst.c mdc2_one.c SRCS+= hmac.c SRCS+= rmd_dgst.c rmd_one.c +SRCS+= acss_skey.c acss_enc.c SRCS+= aes_cbc.c aes_cfb.c aes_ctr.c aes_ecb.c aes_ofb.c aes_misc.c aes_core.c SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ @@ -91,7 +92,7 @@ SRCS+= c_all.c evp_err.c evp_acnf.c m_md4.c p5_crpt.c SRCS+= c_allc.c evp_key.c m_md5.c p5_crpt2.c SRCS+= c_alld.c e_null.c evp_lib.c p_dec.c SRCS+= digest.c e_rc2.c evp_pbe.c m_null.c p_enc.c -SRCS+= e_aes.c e_rc4.c evp_pkey.c m_ripemd.c p_lib.c +SRCS+= e_acss.c e_aes.c e_rc4.c evp_pkey.c m_ripemd.c p_lib.c SRCS+= md4_dgst.c md4_one.c SRCS+= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_pkey.c SRCS+= pem_all.c pem_err.c pem_x509.c pem_pk8.c pem_oth.c pem_xaux.c @@ -152,9 +153,10 @@ SRCS+= ec_err.c ec_mult.c ecp_nist.c ecp_smpl.c ${LCRYPTO_SRC}/comp ${LCRYPTO_SRC}/txt_db ${LCRYPTO_SRC}/md4 \ ${LCRYPTO_SRC}/engine ${LCRYPTO_SRC}/dso ${LCRYPTO_SRC}/ui \ ${LCRYPTO_SRC}/ocsp ${LCRYPTO_SRC}/ec ${LCRYPTO_SRC}/aes ${LCRYPTO_SRC} \ - ${.CURDIR}/arch/${MACHINE_ARCH} + ${LCRYPTO_SRC}/acss ${.CURDIR}/arch/${MACHINE_ARCH} HDRS=\ + crypto/acss/acss.h \ crypto/aes/aes.h \ crypto/asn1/asn1.h \ crypto/asn1/asn1_mac.h \ diff --git a/lib/libssl/crypto/shlib_version b/lib/libssl/crypto/shlib_version index a31d18257cb..bab3bd7a1b7 100644 --- a/lib/libssl/crypto/shlib_version +++ b/lib/libssl/crypto/shlib_version @@ -1,2 +1,2 @@ major=10 -minor=1 +minor=2 |