Implement actual cryptographic functions using Crypto++ library

This commit is contained in:
2025-08-28 09:41:19 +02:00
parent 41b17022c7
commit b1acb0ba81
3 changed files with 184 additions and 44 deletions

View File

@ -11,5 +11,10 @@ cmake .. -G "Visual Studio 17 2022"
REM Build the project
cmake --build . --config Release
echo Build completed!
if %ERRORLEVEL% EQU 0 (
echo Build completed successfully!
) else (
echo Build failed with error level %ERRORLEVEL%
)
cd ..