2013-09-01 13:38:57 -04:00
|
|
|
#ifndef CRYPTO_CONST_H__
|
|
|
|
#define CRYPTO_CONST_H__
|
|
|
|
|
|
|
|
#include <cryptopp/integer.h>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace crypto
|
|
|
|
{
|
2014-05-02 11:42:30 -04:00
|
|
|
// DH
|
|
|
|
extern const CryptoPP::Integer elgp;
|
|
|
|
extern const CryptoPP::Integer elgg;
|
2013-09-01 13:38:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
// DSA
|
2014-05-02 11:42:30 -04:00
|
|
|
extern const CryptoPP::Integer dsap;
|
|
|
|
extern const CryptoPP::Integer dsaq;
|
|
|
|
extern const CryptoPP::Integer dsag;
|
2013-09-01 13:38:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|