i2pd/CryptoConst.h

39 lines
674 B
C
Raw Normal View History

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