2013-09-01 17:38:57 +00:00
|
|
|
#ifndef CRYPTO_CONST_H__
|
|
|
|
#define CRYPTO_CONST_H__
|
|
|
|
|
|
|
|
#include <cryptopp/integer.h>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace crypto
|
|
|
|
{
|
2014-09-21 22:17:16 +00:00
|
|
|
struct CryptoConstants
|
|
|
|
{
|
|
|
|
// DH/ElGamal
|
|
|
|
const CryptoPP::Integer elgp;
|
|
|
|
const CryptoPP::Integer elgg;
|
2013-09-01 17:38:57 +00:00
|
|
|
|
2014-09-21 22:17:16 +00:00
|
|
|
// DSA
|
|
|
|
const CryptoPP::Integer dsap;
|
|
|
|
const CryptoPP::Integer dsaq;
|
|
|
|
const CryptoPP::Integer dsag;
|
|
|
|
};
|
|
|
|
|
|
|
|
const CryptoConstants& GetCryptoConstants ();
|
|
|
|
|
|
|
|
// DH/ElGamal
|
|
|
|
#define elgp GetCryptoConstants ().elgp
|
|
|
|
#define elgg GetCryptoConstants ().elgg
|
2013-09-01 17:38:57 +00:00
|
|
|
|
|
|
|
// DSA
|
2014-09-21 22:17:16 +00:00
|
|
|
#define dsap GetCryptoConstants ().dsap
|
|
|
|
#define dsaq GetCryptoConstants ().dsaq
|
2014-12-11 02:31:06 +00:00
|
|
|
#define dsag GetCryptoConstants ().dsag
|
|
|
|
|
|
|
|
// RSA
|
|
|
|
const int rsae = 65537;
|
2013-09-01 17:38:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|