Add OpenSSL libraries, convert to CMake

This commit is contained in:
Andrew 2023-05-30 11:07:50 +03:00
parent f5a76d8df5
commit ac47a88f7e
12 changed files with 17 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11)
PROJECT(WindowsXPKg)
SET(CMAKE_CXX_STANDARD 17)
SET(SOURCE main.c xp_algorithm.c server_algorithm.c)
SET(HEADER header.h)
TARGET_LINK_LIBRARIES(${CMAKE_SOURCE_DIR}/lib/libcrypto.lib)
ADD_EXECUTABLE(Release ${SOURCE})

8
header.h Normal file
View File

@ -0,0 +1,8 @@
//
// Created by Andrew on 30/05/2023.
//
#ifndef WINDOWSXPKG_HEADER_H
#define WINDOWSXPKG_HEADER_H
#endif //WINDOWSXPKG_HEADER_H

BIN
lib/engines-3/capi.dll Normal file

Binary file not shown.

BIN
lib/engines-3/capi.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lib/engines-3/padlock.dll Normal file

Binary file not shown.

BIN
lib/engines-3/padlock.pdb Normal file

Binary file not shown.

BIN
lib/libcrypto.lib Normal file

Binary file not shown.

BIN
lib/libssl.lib Normal file

Binary file not shown.

BIN
lib/ossl-modules/legacy.dll Normal file

Binary file not shown.

BIN
lib/ossl-modules/legacy.pdb Normal file

Binary file not shown.