mirror of
https://github.com/brunoos/luasec.git
synced 2025-04-05 00:06:46 +02:00
23 lines
470 B
C
23 lines
470 B
C
/*--------------------------------------------------------------------------
|
|
* LuaSec 1.2.0
|
|
*
|
|
* Copyright (C) 2006-2022 Bruno Silvestre
|
|
*
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef LSEC_EC_H
|
|
#define LSEC_EC_H
|
|
|
|
#include <lua.h>
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
#include <openssl/ec.h>
|
|
|
|
EC_KEY *lsec_find_ec_key(lua_State *L, const char *str);
|
|
#endif
|
|
|
|
void lsec_get_curves(lua_State *L);
|
|
void lsec_load_curves(lua_State *L);
|
|
|
|
#endif
|