mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 18:58:21 -05:00
21 lines
521 B
C
21 lines
521 B
C
|
/*
|
||
|
* Random number generator
|
||
|
* Copyright (c) 2010, Jouni Malinen <j@w1.fi>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*
|
||
|
* Alternatively, this software may be distributed under the terms of BSD
|
||
|
* license.
|
||
|
*
|
||
|
* See README and COPYING for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef RANDOM_H
|
||
|
#define RANDOM_H
|
||
|
|
||
|
#define random_get_bytes(b, l) os_get_random((b), (l))
|
||
|
|
||
|
#endif /* RANDOM_H */
|