Elligator added

This commit is contained in:
orignal 2019-12-04 15:37:24 -05:00
parent 39300a5bbf
commit 29f0e10411
3 changed files with 56 additions and 0 deletions

25
libi2pd/Elligator.h Normal file
View file

@ -0,0 +1,25 @@
#ifndef ELLIGATOR_H__
#define ELLIGATOR_H__
#include <memory>
namespace i2p
{
namespace crypto
{
class Elligator2
{
public:
Elligator2 ();
~Elligator2 ();
};
std::unique_ptr<Elligator2>& GetElligator ();
}
}
#endif