You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
tbm-utils/include/x509.h

9 lines
199 B

#pragma once
#include <openssl/evp.h>
#include <openssl/pem.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
X509 *X509_open_cert(const char *path);
char *X509_get_common_name(X509 *cert);