Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Harper <nharper@chromium.org>2014-12-10 02:51:28 +0300
committerAdam Langley <agl@google.com>2014-12-18 23:13:06 +0300
commit4685e87746bbb6a47772feda773ce9f098948479 (patch)
tree13d587b978bd47d38d3b0aa5c3fcdcad68724a3d /crypto/CMakeLists.txt
parentbe2900a6a3741b4a25a89768e6cbdd3cd9df9e80 (diff)
Implement HKDF.
See https://tools.ietf.org/html/rfc5869. Change-Id: I6d012d8c38806df80aa44350d3a86eaff499ac05 Reviewed-on: https://boringssl-review.googlesource.com/2533 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/CMakeLists.txt')
-rw-r--r--crypto/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index a42d92d0..56b66160 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -105,6 +105,7 @@ add_subdirectory(hmac)
# Level 3
add_subdirectory(evp)
+add_subdirectory(hkdf)
add_subdirectory(pem)
add_subdirectory(x509)
add_subdirectory(x509v3)
@@ -160,6 +161,7 @@ add_library(
$<TARGET_OBJECTS:ecdsa>
$<TARGET_OBJECTS:hmac>
$<TARGET_OBJECTS:evp>
+ $<TARGET_OBJECTS:hkdf>
$<TARGET_OBJECTS:pem>
$<TARGET_OBJECTS:x509>
$<TARGET_OBJECTS:x509v3>