mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
fix warnings about unused code
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
01fc21ffb9
commit
2c19da9aa7
5 changed files with 24 additions and 24 deletions
|
@ -159,8 +159,10 @@ namespace crypto
|
|||
|
||||
// DH/ElGamal
|
||||
|
||||
#if !defined(__x86_64__)
|
||||
const int ELGAMAL_SHORT_EXPONENT_NUM_BITS = 226;
|
||||
const int ELGAMAL_SHORT_EXPONENT_NUM_BYTES = ELGAMAL_SHORT_EXPONENT_NUM_BITS/8+1;
|
||||
#endif
|
||||
const int ELGAMAL_FULL_EXPONENT_NUM_BITS = 2048;
|
||||
const int ELGAMAL_FULL_EXPONENT_NUM_BYTES = ELGAMAL_FULL_EXPONENT_NUM_BITS/8;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue