14 lines
660 B
C
14 lines
660 B
C
/**********************************************************************
|
|
* gost-engine.h *
|
|
* GOST engine in library form *
|
|
* *
|
|
* Copyright (c) 2021 Richard Levitte <richard@levitte.org> *
|
|
* This file is distributed under the same license as OpenSSL *
|
|
* *
|
|
**********************************************************************/
|
|
#ifndef GOST_ENGINE_H
|
|
# define GOST_ENGINE_H
|
|
|
|
void ENGINE_load_gost(void);
|
|
|
|
#endif
|