2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-19 23:55:09 -04:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 12:12:24 -04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
2020-02-19 00:06:09 -05:00
|
|
|
#ifndef OSSL_CONFIG_H
|
|
|
|
#define OSSL_CONFIG_H
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2020-02-19 00:11:54 -05:00
|
|
|
CONF *GetConfig(VALUE obj);
|
2003-07-23 12:12:24 -04:00
|
|
|
void Init_ossl_config(void);
|
|
|
|
|
2020-02-19 00:06:09 -05:00
|
|
|
#endif /* OSSL_CONFIG_H */
|