mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-13 01:20:22 +03:00
load eepsite keys
This commit is contained in:
parent
c855d8b413
commit
72cb35fcc0
@ -19,6 +19,13 @@ namespace data
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PrivateKeys& PrivateKeys::operator=(const Keys& keys)
|
||||||
|
{
|
||||||
|
pub = keys;
|
||||||
|
memcpy (privateKey, keys.privateKey, 276); // 256 + 20
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
IdentHash CalculateIdentHash (const Identity& identity)
|
IdentHash CalculateIdentHash (const Identity& identity)
|
||||||
{
|
{
|
||||||
IdentHash hash;
|
IdentHash hash;
|
||||||
|
@ -33,6 +33,8 @@ namespace data
|
|||||||
Identity pub;
|
Identity pub;
|
||||||
uint8_t privateKey[256];
|
uint8_t privateKey[256];
|
||||||
uint8_t signingPrivateKey[20];
|
uint8_t signingPrivateKey[20];
|
||||||
|
|
||||||
|
PrivateKeys& operator=(const Keys& keys);
|
||||||
};
|
};
|
||||||
|
|
||||||
#pragma pack()
|
#pragma pack()
|
||||||
|
Loading…
Reference in New Issue
Block a user