Browse Source

Add an AEAD EVP interface to libcrypto, along with AES-GCM AEAD

implementations. This largely pulls in Adam Langley's AEAD patches from
Chromium's OpenSSL.
ok miod@
OPENBSD_5_6
jsing 10 years ago
parent
commit
9ec5260ddd
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib/libcrypto/crypto/Makefile

+ 2
- 2
src/lib/libcrypto/crypto/Makefile View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.33 2014/05/14 14:46:35 jsing Exp $
# $OpenBSD: Makefile,v 1.34 2014/05/15 13:53:46 jsing Exp $
LIB= crypto
@ -152,7 +152,7 @@ SRCS+= c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c
SRCS+= evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c
SRCS+= e_old.c pmeth_lib.c pmeth_fn.c pmeth_gn.c m_sigver.c
SRCS+= e_aes_cbc_hmac_sha1.c e_rc4_hmac_md5.c
SRCS+= e_chacha.c
SRCS+= e_chacha.c evp_aead.c
# hmac/
SRCS+= hmac.c hm_ameth.c hm_pmeth.c


Loading…
Cancel
Save