]>
Commit | Line | Data |
---|---|---|
db9ecf05 | 1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
7a3c343c | 2 | #pragma once |
7560fffc LP |
3 | |
4 | /* | |
5 | * fsprg v0.1 - (seekable) forward-secure pseudorandom generator | |
810adae9 | 6 | * Copyright © 2012 B. Poettering |
7560fffc | 7 | * Contact: fsprg@point-at-infinity.org |
7560fffc LP |
8 | */ |
9 | ||
5cdf13c7 | 10 | #include "forward.h" |
44a6b1b6 | 11 | |
7560fffc LP |
12 | #ifdef __cplusplus |
13 | extern "C" { | |
14 | #endif | |
15 | ||
16 | #define FSPRG_RECOMMENDED_SECPAR 1536 | |
17 | #define FSPRG_RECOMMENDED_SEEDLEN (96/8) | |
18 | ||
44a6b1b6 ZJS |
19 | size_t FSPRG_mskinbytes(unsigned secpar) _const_; |
20 | size_t FSPRG_mpkinbytes(unsigned secpar) _const_; | |
21 | size_t FSPRG_stateinbytes(unsigned secpar) _const_; | |
7560fffc LP |
22 | |
23 | /* Setup msk and mpk. Providing seed != NULL makes this algorithm deterministic. */ | |
8707c9b2 | 24 | int FSPRG_GenMK(void *msk, void *mpk, const void *seed, size_t seedlen, unsigned secpar); |
7560fffc LP |
25 | |
26 | /* Initialize state deterministically in dependence on seed. */ | |
27 | /* Note: in case one wants to run only one GenState0 per GenMK it is safe to use | |
28 | the same seed for both GenMK and GenState0. | |
29 | */ | |
8707c9b2 | 30 | int FSPRG_GenState0(void *state, const void *mpk, const void *seed, size_t seedlen); |
7560fffc | 31 | |
8707c9b2 | 32 | int FSPRG_Evolve(void *state); |
7560fffc | 33 | |
44a6b1b6 | 34 | uint64_t FSPRG_GetEpoch(const void *state) _pure_; |
7560fffc LP |
35 | |
36 | /* Seek to any arbitrary state (by providing msk together with seed from GenState0). */ | |
8707c9b2 | 37 | int FSPRG_Seek(void *state, uint64_t epoch, const void *msk, const void *seed, size_t seedlen); |
7560fffc | 38 | |
8707c9b2 | 39 | int FSPRG_GetKey(const void *state, void *key, size_t keylen, uint32_t idx); |
7560fffc LP |
40 | |
41 | #ifdef __cplusplus | |
42 | } | |
43 | #endif |