1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:17:44 +00:00

LibCrypt: Add LibCrypt, crypt, and crypt_r

This commit is contained in:
Peter Elliott 2020-07-24 21:08:48 -06:00 committed by Andreas Kling
parent 58dd9f2d2a
commit 9dcbb263f1
4 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
crypt.cpp
)
serenity_libc(LibCrypt crypt)
target_link_libraries(LibCrypt LibC LibCrypto)