This commit is contained in:
2025-07-26 16:21:32 +03:00
parent 1ade51f4ef
commit f3743942ee
7 changed files with 2171 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CXX = g++
CXXFLAGS = -std=c++17 -I/usr/local/include/botan-2/ -lbotan-2
RUN = ./
LD_LIBRARY_PATH = /usr/local/lib
.PHONY: all clean build run
all: build run
build: example.cpp
$(CXX) example.cpp $(CXXFLAGS) -o example
run:
$(RUN)example
run_python:
LD_LIBRARY_PATH=$(LD_LIBRARY_PATH) python example.py
clean:
rm -f *.pem