mirror of
https://github.com/brunoos/luasec.git
synced 2025-04-04 15:56:46 +02:00
32 lines
769 B
C
32 lines
769 B
C
/*--------------------------------------------------------------------------
|
|
* LuaSec 1.3.2
|
|
*
|
|
* Copyright (C) 2014-2023 Kim Alvefur, Paul Aurich, Tobias Markmann, Matthew Wild
|
|
* Copyright (C) 2013-2023 Bruno Silvestre
|
|
*
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef LSEC_X509_H
|
|
#define LSEC_X509_H
|
|
|
|
#include <openssl/x509v3.h>
|
|
#include <lua.h>
|
|
|
|
#include "compat.h"
|
|
|
|
/* We do not support UniversalString nor BMPString as ASN.1 String types */
|
|
enum { LSEC_AI5_STRING, LSEC_UTF8_STRING };
|
|
|
|
typedef struct t_x509_ {
|
|
X509 *cert;
|
|
int encode;
|
|
} t_x509;
|
|
typedef t_x509* p_x509;
|
|
|
|
void lsec_pushx509(lua_State* L, X509* cert);
|
|
X509* lsec_checkx509(lua_State* L, int idx);
|
|
|
|
LSEC_API int luaopen_ssl_x509(lua_State *L);
|
|
|
|
#endif
|