2 * Copyright (C) 2008, 2010 Free Software Foundation, Inc.
4 * Author: Nikos Mavrogiannopoulos
6 * This file is part of GnuTLS.
8 * The GnuTLS is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
25 /* This file handles all the internal functions that cope with random data.
28 #include <gnutls_int.h>
29 #include <gnutls_errors.h>
35 _gnutls_rnd_init (void)
37 if (_gnutls_rnd_ops
.init
!= NULL
)
39 if (_gnutls_rnd_ops
.init (&rnd_ctx
) < 0)
42 return GNUTLS_E_RANDOM_FAILED
;
50 _gnutls_rnd_deinit (void)
52 if (_gnutls_rnd_ops
.deinit
!= NULL
)
54 _gnutls_rnd_ops
.deinit (rnd_ctx
);
62 * @level: a security level
63 * @data: place to store random bytes
64 * @len: The requested size
66 * This function will generate random data and store it
69 * Returns: Zero or a negative value on error.
74 gnutls_rnd (gnutls_rnd_level_t level
, void *data
, size_t len
)
78 return _gnutls_rnd_ops
.rnd (rnd_ctx
, level
, data
, len
);