i2pd/libi2pd/Elligator.h
2019-12-04 15:37:24 -05:00

26 lines
235 B
C++

#ifndef ELLIGATOR_H__
#define ELLIGATOR_H__
#include <memory>
namespace i2p
{
namespace crypto
{
class Elligator2
{
public:
Elligator2 ();
~Elligator2 ();
};
std::unique_ptr<Elligator2>& GetElligator ();
}
}
#endif