randombytes_internal_random.h (427B)
1 2 #ifndef randombytes_internal_random_H 3 #define randombytes_internal_random_H 4 5 #include "export.h" 6 #include "randombytes.h" 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 SODIUM_EXPORT 13 extern struct randombytes_implementation randombytes_internal_implementation; 14 15 /* Backwards compatibility with libsodium < 1.0.18 */ 16 #define randombytes_salsa20_implementation randombytes_internal_implementation 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif