Skip to content

Instantly share code, notes, and snippets.

View a1excoder's full-sized avatar

Oleksandr Rudenko a1excoder

View GitHub Profile
@nathan-osman
nathan-osman / CMakeLists.txt
Last active October 21, 2025 05:13
Generates a self-signed x509 certificate using OpenSSL.
# A simple CMake script for building the application.
cmake_minimum_required(VERSION 2.8)
project(create-x509)
# Our only dependency is OpenSSL
find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})
add_executable(create-x509 create-x509.cpp)