2012-01-25 15:17:46 +00:00
|
|
|
/*
|
2016-03-29 18:15:33 -04:00
|
|
|
* Copyright (C) 2012, 2016 Red Hat, Inc.
|
2012-01-25 15:17:46 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 16:30:55 -06:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 18:06:23 +08:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2012-01-25 15:17:46 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 11:13:08 -05:00
|
|
|
#pragma once
|
2012-01-25 15:17:46 +00:00
|
|
|
|
2019-06-18 11:13:08 -05:00
|
|
|
#include "internal.h"
|
2012-01-25 15:17:46 +00:00
|
|
|
|
2019-10-15 13:24:34 +02:00
|
|
|
uint64_t virRandomBits(int nbits) G_GNUC_NO_INLINE;
|
2012-08-10 14:01:23 +01:00
|
|
|
double virRandom(void);
|
|
|
|
uint32_t virRandomInt(uint32_t max);
|
2016-03-29 18:15:33 -04:00
|
|
|
int virRandomBytes(unsigned char *buf, size_t buflen)
|
2019-10-15 13:24:34 +02:00
|
|
|
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT G_GNUC_NO_INLINE;
|
|
|
|
int virRandomGenerateWWN(char **wwn, const char *virt_type) G_GNUC_NO_INLINE;
|
2020-11-19 12:22:47 +00:00
|
|
|
char *virRandomToken(size_t len);
|