i2pd/CryptoConst.h

23 lines
344 B
C
Raw Normal View History

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