i2pd/CryptoConst.h

23 lines
344 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-05-02 19:42:30 +04:00
// DH
extern const CryptoPP::Integer elgp;
extern const CryptoPP::Integer elgg;
2013-09-01 21:38:57 +04:00
// DSA
2014-05-02 19:42:30 +04:00
extern const CryptoPP::Integer dsap;
extern const CryptoPP::Integer dsaq;
extern const CryptoPP::Integer dsag;
2013-09-01 21:38:57 +04:00
}
}
#endif