Change all stun_XXX_t enums/structs into StunXxx to have a common naming convention
[sipe-libnice.git] / stun / rand.h
blobf7deb067c0a7c432d0d88be349c19cc8920e9032
1 /*
2 * This file is part of the Nice GLib ICE library.
4 * (C) 2008 Nokia Corporation. All rights reserved.
5 * (C) 2008 Collabora Ltd. All rights reserved.
6 * Contact: Youness Alaoui
8 * The contents of this file are subject to the Mozilla Public License Version
9 * 1.1 (the "License"); you may not use this file except in compliance with
10 * the License. You may obtain a copy of the License at
11 * http://www.mozilla.org/MPL/
13 * Software distributed under the License is distributed on an "AS IS" basis,
14 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
15 * for the specific language governing rights and limitations under the
16 * License.
18 * The Original Code is the Nice GLib ICE library.
20 * The Initial Developers of the Original Code are Collabora Ltd and Nokia
21 * Corporation. All Rights Reserved.
23 * Alternatively, the contents of this file may be used under the terms of the
24 * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
25 * case the provisions of LGPL are applicable instead of those above. If you
26 * wish to allow use of your version of this file only under the terms of the
27 * LGPL and not to allow others to use your version of this file under the
28 * MPL, indicate your decision by deleting the provisions above and replace
29 * them with the notice and other provisions required by the LGPL. If you do
30 * not delete the provisions above, a recipient may use your version of this
31 * file under either the MPL or the LGPL.
35 #ifndef RAND_H
36 #define RAND_H
39 #ifdef _WIN32
40 #include "win32_common.h"
41 #else
42 #include <stdint.h>
43 #endif
45 void RAND_bytes (uint8_t *dst, int len);
47 #endif /* RAND_H */