| 116 | |
| 117 | |
| 118 | void isaac64_init(isaac64_ctx *_ctx,const unsigned char *_seed,int _nseed){ |
| 119 | _ctx->a=_ctx->b=_ctx->c=0; |
| 120 | memset(_ctx->r,0,sizeof(_ctx->r)); |
| 121 | isaac64_reseed(_ctx,_seed,_nseed); |
| 122 | } |
| 123 | |
| 124 | void isaac64_reseed(isaac64_ctx *_ctx,const unsigned char *_seed,int _nseed){ |
| 125 | uint64_t *m; |
no test coverage detected