rspamd/contrib/libottery/ottery_version.h.in
Vsevolod Stakhov ff62d93b0e Use libottery for secure random numbers.
Libottery itself is hosted here:
https://github.com/nmathewson/libottery

This import is a rough adoptation of libottery to use it for secure
random numbers in rspamd when needed (and in DNS resolver specifically).
This import makes the internal chacha20 code useless, hence it is
removed now.
2014-02-04 16:37:37 +00:00

29 lines
885 B
C

/* Libottery by Nick Mathewson.
This software has been dedicated to the public domain under the CC0
public domain dedication.
To the extent possible under law, the person who associated CC0 with
libottery has waived all copyright and related or neighboring rights
to libottery.
You should have received a copy of the CC0 legalcode along with this
work in doc/cc0.txt. If not, see
<http://creativecommons.org/publicdomain/zero/1.0/>.
*/
#ifndef OTTERY_VERSION_H_HEADER_INCLUDED_
#define OTTERY_VERSION_H_HEADER_INCLUDED_
/**
* Version number for Libottery. The first three bytes are the major number,
* minor number, and patch-level respectively. The final byte is 0 for a
* released version, and nonzero otherwise.
*/
#undef OTTERY_VERSION
/**
* Human-readable string representing the Libottery version.
*/
#undef OTTERY_VERSION_STRING
#endif