File: isaac.h

package info (click to toggle)
libmath-prime-util-gmp-perl 0.52-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,504 kB
  • sloc: ansic: 16,770; perl: 4,530; sh: 162; makefile: 15
file content (12 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MPU_ISAAC_H
#define MPU_ISAAC_H

#include "ptypes.h"

extern void isaac_init(uint32_t bytes, const unsigned char* data);
extern uint32_t isaac_rand32(void);
extern uint32_t isaac_rand(uint32_t n);
extern void isaac_rand_bytes(uint32_t bytes, unsigned char* data);
extern int isaac_seeded(void);

#endif