i2pd/libi2pd/Elligator.h

26 lines
235 B
C
Raw Normal View History

2019-12-04 21:37:24 +01:00
#ifndef ELLIGATOR_H__
#define ELLIGATOR_H__
#include <memory>
namespace i2p
{
namespace crypto
{
class Elligator2
{
public:
Elligator2 ();
~Elligator2 ();
};
std::unique_ptr<Elligator2>& GetElligator ();
}
}
#endif