mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
34 lines
401 B
C++
34 lines
401 B
C++
#ifndef ELLIGATOR_H__
|
|
#define ELLIGATOR_H__
|
|
|
|
#include <inttypes.h>
|
|
#include <memory>
|
|
#include <openssl/bn.h>
|
|
|
|
namespace i2p
|
|
{
|
|
namespace crypto
|
|
{
|
|
|
|
class Elligator2
|
|
{
|
|
public:
|
|
|
|
Elligator2 ();
|
|
~Elligator2 ();
|
|
|
|
void Encode (const uint8_t * key, uint8_t * encoded) const;
|
|
|
|
private:
|
|
|
|
BIGNUM * p, * n1, * n2, * A, * u, * iu;
|
|
};
|
|
|
|
std::unique_ptr<Elligator2>& GetElligator ();
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
|