1/*
2 *  ccrng_system.h
3 *  corecrypto
4 *
5 *  Created by Fabrice Gautier on 12/13/10.
6 *  Copyright 2010 Apple, Inc. All rights reserved.
7 *
8 */
9
10#ifndef _CORECRYPTO_CCRNG_SYSTEM_H_
11#define _CORECRYPTO_CCRNG_SYSTEM_H_
12
13#include <corecrypto/ccrng.h>
14
15struct ccrng_system_state {
16    CCRNG_STATE_COMMON
17    int fd;
18};
19
20int ccrng_system_init(struct ccrng_system_state *rng);
21
22void ccrng_system_done(struct ccrng_system_state *rng);
23
24#endif /* _CORECRYPTO_CCRNG_SYSTEM_H_ */
25