1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

Kernel: Replace existing random implementation with Fortuna

This commit is contained in:
Peter Elliott 2020-06-22 20:23:35 -06:00 committed by Andreas Kling
parent f2d51f13a6
commit 0f32155fa4
3 changed files with 49 additions and 30 deletions

View file

@ -148,12 +148,18 @@ set(KEYBOARD_SOURCES
../Libraries/LibKeyboard/CharacterMap.cpp
)
set(CRYPTO_SOURCES
../Libraries/LibCrypto/Cipher/AES.cpp
../Libraries/LibCrypto/Hash/SHA2.cpp
)
set(SOURCES
${KERNEL_SOURCES}
${AK_SOURCES}
${ELF_SOURCES}
${VT_SOURCES}
${KEYBOARD_SOURCES}
${CRYPTO_SOURCES}
)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DKERNEL")