This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef CHACHA_HPP_INCLUDED | |
#define CHACHA_HPP_INCLUDED 1 | |
/* | |
* A C++ version of ChaCha PRNG (*modified* from Orson Peters original code) | |
* | |
* Changes Copyright (c) 2017-18 Melissa E. O'Neill, licence as below. | |
* | |
* Changes compared to original 2015 version: | |
* - Some formatting fixes |