/*1* Copyright (C) 2023 - This file is part of libecc project2*3* Authors:4* Ryad BENADJILA <[email protected]>5* Arnaud EBALARD <[email protected]>6*7* This software is licensed under a dual BSD and GPL v2 license.8* See LICENSE file at the root folder of the project.9*/10#ifndef __UTILS_RAND_H__11#define __UTILS_RAND_H__1213#include <libecc/words/words.h>14#include "../external_deps/rand.h"1516/* WARNING: use with care, this is useful when "fast" but somehow unsafe17* random must be provided.18*/19ATTRIBUTE_WARN_UNUSED_RET int get_unsafe_random(unsigned char *buf, u16 len);2021#endif /* __UTILS_RAND_H__ */222324