This commit is contained in:
2026-06-11 13:18:17 +03:00
parent 0e96de724f
commit ec049ecb74
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