mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
26 lines
235 B
C++
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
|
|
|
|
|