730d69e159
This isn't actually used yet, but implements CTR-DRBG from SP 800-90Ar1. Specifically, it always uses AES-256 and no derivation function. Change-Id: Ie82b829590226addd7c165eac410a5d584858bfd Reviewed-on: https://boringssl-review.googlesource.com/14891 Reviewed-by: Adam Langley <agl@google.com>
38 lines
527 B
CMake
38 lines
527 B
CMake
include_directories(../../include)
|
|
|
|
if (${ARCH} STREQUAL "x86_64")
|
|
set(
|
|
RAND_ARCH_SOURCES
|
|
|
|
rdrand-x86_64.${ASM_EXT}
|
|
)
|
|
endif()
|
|
|
|
add_library(
|
|
rand
|
|
|
|
OBJECT
|
|
|
|
ctrdrbg.c
|
|
deterministic.c
|
|
fuchsia.c
|
|
rand.c
|
|
urandom.c
|
|
windows.c
|
|
|
|
${RAND_ARCH_SOURCES}
|
|
)
|
|
|
|
perlasm(rdrand-x86_64.${ASM_EXT} asm/rdrand-x86_64.pl)
|
|
|
|
add_executable(
|
|
ctrdrbg_vector_test
|
|
|
|
ctrdrbg_vector_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(ctrdrbg_vector_test crypto)
|
|
add_dependencies(all_tests ctrdrbg_vector_test)
|