lokinet/crypto/include/sodium/randombytes_nativeclient.h

26 lines
335 B
C
Raw Normal View History

2018-10-23 11:29:37 +00:00
#ifndef randombytes_nativeclient_H
#define randombytes_nativeclient_H
#ifdef __native_client__
2019-08-31 18:54:19 +00:00
#include "export.h"
#include "randombytes.h"
2018-10-23 11:29:37 +00:00
2019-08-31 18:54:19 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
2018-10-23 11:29:37 +00:00
2019-08-31 18:54:19 +00:00
SODIUM_EXPORT
extern struct randombytes_implementation
randombytes_nativeclient_implementation;
2018-10-23 11:29:37 +00:00
2019-08-31 18:54:19 +00:00
#ifdef __cplusplus
2018-10-23 11:29:37 +00:00
}
2019-08-31 18:54:19 +00:00
#endif
2018-10-23 11:29:37 +00:00
#endif
#endif