mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-04 06:00:37 +00:00
23 lines
344 B
C++
23 lines
344 B
C++
#ifndef CRYPTO_CONST_H__
|
|
#define CRYPTO_CONST_H__
|
|
|
|
#include <cryptopp/integer.h>
|
|
|
|
namespace i2p
|
|
{
|
|
namespace crypto
|
|
{
|
|
// DH
|
|
extern const CryptoPP::Integer elgp;
|
|
extern const CryptoPP::Integer elgg;
|
|
|
|
|
|
// DSA
|
|
extern const CryptoPP::Integer dsap;
|
|
extern const CryptoPP::Integer dsaq;
|
|
extern const CryptoPP::Integer dsag;
|
|
}
|
|
}
|
|
|
|
#endif
|