mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-27 02:46:24 -05:00
- Add REUSE configuration - Add compliant licenses in LICENSES/ - Add copyright SPDX tags - Run REUSE complicance check in CI - Remove spdx-ensure
12 lines
238 B
C
12 lines
238 B
C
// SPDX-FileCopyrightText: 2024 Tillitis AB <tillitis.se>
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#ifndef RNG_H
|
|
#define RNG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t rng_get_word(void);
|
|
uint32_t rng_xorwow(uint32_t state, uint32_t acc);
|
|
|
|
#endif
|