Add HKDF functionality

This commit is contained in:
kinichiro
2017-05-02 00:21:57 +09:00
parent f494c6aaf7
commit 63042e98f8
5 changed files with 15 additions and 1 deletions

View File

@@ -463,6 +463,7 @@ set(
gost/gostr341001_pmeth.c
gost/gostr341194.c
gost/streebog.c
hkdf/hkdf.c
hmac/hm_ameth.c
hmac/hm_pmeth.c
hmac/hmac.c

View File

@@ -583,6 +583,9 @@ noinst_HEADERS += gost/gost.h
noinst_HEADERS += gost/gost_asn1.h
noinst_HEADERS += gost/gost_locl.h
# hkdf
libcrypto_la_SOURCES += hkdf/hkdf.c
# hmac
libcrypto_la_SOURCES += hmac/hm_ameth.c
libcrypto_la_SOURCES += hmac/hm_pmeth.c