aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffi/ffi_rng.h
blob: 73060eab70f2fe89aa6a365b63fa158ab54ea5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* (C) 2017 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#ifndef BOTAN_FFI_RNG_H__
#define BOTAN_FFI_RNG_H__

#include <botan/rng.h>
#include <botan/internal/ffi_util.h>

extern "C" {

using namespace Botan_FFI;

BOTAN_FFI_DECLARE_STRUCT(botan_rng_struct, Botan::RandomNumberGenerator, 0x4901F9C1);

}

#endif