mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
moved credential and blinding to BlindedPublicKey
This commit is contained in:
parent
706da6e431
commit
ea791309ad
@ -639,22 +639,21 @@ namespace client
|
|||||||
|
|
||||||
bool LeaseSetDestination::RequestDestinationWithEncryptedLeaseSet (std::shared_ptr<const i2p::data::BlindedPublicKey> dest, RequestComplete requestComplete)
|
bool LeaseSetDestination::RequestDestinationWithEncryptedLeaseSet (std::shared_ptr<const i2p::data::BlindedPublicKey> dest, RequestComplete requestComplete)
|
||||||
{
|
{
|
||||||
if (!m_Pool || !IsReady ())
|
if (!dest || !m_Pool || !IsReady ())
|
||||||
{
|
{
|
||||||
if (requestComplete)
|
if (requestComplete)
|
||||||
m_Service.post ([requestComplete](void){requestComplete (nullptr);});
|
m_Service.post ([requestComplete](void){requestComplete (nullptr);});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
i2p::data::IdentHash storeKey;
|
auto storeHash = dest->GetStoreHash ();
|
||||||
i2p::data::LeaseSet2::CalculateStoreHash (dest, storeKey);
|
auto leaseSet = FindLeaseSet (storeHash);
|
||||||
auto leaseSet = FindLeaseSet (storeKey);
|
|
||||||
if (leaseSet)
|
if (leaseSet)
|
||||||
{
|
{
|
||||||
if (requestComplete)
|
if (requestComplete)
|
||||||
m_Service.post ([requestComplete, leaseSet](void){requestComplete (leaseSet);});
|
m_Service.post ([requestComplete, leaseSet](void){requestComplete (leaseSet);});
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
m_Service.post (std::bind (&LeaseSetDestination::RequestLeaseSet, shared_from_this (), storeKey, requestComplete, dest));
|
m_Service.post (std::bind (&LeaseSetDestination::RequestLeaseSet, shared_from_this (), storeHash, requestComplete, dest));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -675,9 +674,8 @@ namespace client
|
|||||||
|
|
||||||
void LeaseSetDestination::CancelDestinationRequestWithEncryptedLeaseSet (std::shared_ptr<const i2p::data::BlindedPublicKey> dest, bool notify)
|
void LeaseSetDestination::CancelDestinationRequestWithEncryptedLeaseSet (std::shared_ptr<const i2p::data::BlindedPublicKey> dest, bool notify)
|
||||||
{
|
{
|
||||||
i2p::data::IdentHash ident;
|
if (dest)
|
||||||
i2p::data::LeaseSet2::CalculateStoreHash (dest, ident);
|
CancelDestinationRequest (dest->GetStoreHash (), notify);
|
||||||
CancelDestinationRequest (ident, notify);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LeaseSetDestination::RequestLeaseSet (const i2p::data::IdentHash& dest, RequestComplete requestComplete, std::shared_ptr<const i2p::data::BlindedPublicKey> requestedBlindedKey)
|
void LeaseSetDestination::RequestLeaseSet (const i2p::data::IdentHash& dest, RequestComplete requestComplete, std::shared_ptr<const i2p::data::BlindedPublicKey> requestedBlindedKey)
|
||||||
|
@ -314,6 +314,67 @@ namespace data
|
|||||||
return std::string (str, str + l);
|
return std::string (str, str + l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BlindedPublicKey::GetCredential (uint8_t * credential) const
|
||||||
|
{
|
||||||
|
// A = destination's signing public key
|
||||||
|
// stA = signature type of A, 2 bytes big endian
|
||||||
|
uint16_t stA = htobe16 (GetSigType ());
|
||||||
|
// stA1 = signature type of blinded A, 2 bytes big endian
|
||||||
|
uint16_t stA1 = htobe16 (GetBlindedSigType ());
|
||||||
|
// credential = H("credential", A || stA || stA1)
|
||||||
|
H ("credential", { {GetPublicKey (), GetPublicKeyLen ()}, {(const uint8_t *)&stA, 2}, {(const uint8_t *)&stA1, 2} }, credential);
|
||||||
|
}
|
||||||
|
|
||||||
|
void BlindedPublicKey::GetSubcredential (const uint8_t * blinded, size_t len, uint8_t * subcredential) const
|
||||||
|
{
|
||||||
|
uint8_t credential[32];
|
||||||
|
GetCredential (credential);
|
||||||
|
// subcredential = H("subcredential", credential || blindedPublicKey)
|
||||||
|
H ("subcredential", { {credential, 32}, {blinded, len} }, subcredential);
|
||||||
|
}
|
||||||
|
|
||||||
|
void BlindedPublicKey::GetBlindedKey (const char * date, uint8_t * blindedKey) const
|
||||||
|
{
|
||||||
|
int16_t stA = htobe16 (GetSigType ()), stA1 = htobe16 (GetBlindedSigType ());
|
||||||
|
uint8_t salt[32], seed[64];
|
||||||
|
//seed = HKDF(H("I2PGenerateAlpha", keydata), datestring || secret, "i2pblinding1", 64)
|
||||||
|
H ("I2PGenerateAlpha", { {GetPublicKey (), GetPublicKeyLen ()}, {(const uint8_t *)&stA, 2}, {(const uint8_t *)&stA1, 2} }, salt);
|
||||||
|
i2p::crypto::HKDF (salt, (const uint8_t *)date, 8, "i2pblinding1", seed);
|
||||||
|
i2p::crypto::GetEd25519 ()->BlindPublicKey (GetPublicKey (), seed, blindedKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
void BlindedPublicKey::H (const std::string& p, const std::vector<std::pair<const uint8_t *, size_t> >& bufs, uint8_t * hash) const
|
||||||
|
{
|
||||||
|
SHA256_CTX ctx;
|
||||||
|
SHA256_Init (&ctx);
|
||||||
|
SHA256_Update (&ctx, p.c_str (), p.length ());
|
||||||
|
for (const auto& it: bufs)
|
||||||
|
SHA256_Update (&ctx, it.first, it.second);
|
||||||
|
SHA256_Final (hash, &ctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
i2p::data::IdentHash BlindedPublicKey::GetStoreHash () const
|
||||||
|
{
|
||||||
|
i2p::data::IdentHash hash;
|
||||||
|
if (m_BlindedSigType == i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519 ||
|
||||||
|
m_BlindedSigType == SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519)
|
||||||
|
{
|
||||||
|
char date[9];
|
||||||
|
i2p::util::GetCurrentDate (date);
|
||||||
|
uint8_t blinded[32];
|
||||||
|
GetBlindedKey (date, blinded);
|
||||||
|
auto stA1 = htobe16 (m_BlindedSigType);
|
||||||
|
SHA256_CTX ctx;
|
||||||
|
SHA256_Init (&ctx);
|
||||||
|
SHA256_Update (&ctx, (const uint8_t *)&stA1, 2);
|
||||||
|
SHA256_Update (&ctx, blinded, 32);
|
||||||
|
SHA256_Final ((uint8_t *)hash, &ctx);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
LogPrint (eLogError, "LeaseSet2: blinded key type ", (int)m_BlindedSigType, " is not supported");
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
LeaseSet2::LeaseSet2 (uint8_t storeType, const uint8_t * buf, size_t len, bool storeLeases):
|
LeaseSet2::LeaseSet2 (uint8_t storeType, const uint8_t * buf, size_t len, bool storeLeases):
|
||||||
LeaseSet (storeLeases), m_StoreType (storeType)
|
LeaseSet (storeLeases), m_StoreType (storeType)
|
||||||
{
|
{
|
||||||
@ -533,24 +594,17 @@ namespace data
|
|||||||
char date[9];
|
char date[9];
|
||||||
i2p::util::GetCurrentDate (date);
|
i2p::util::GetCurrentDate (date);
|
||||||
uint8_t blinded[32];
|
uint8_t blinded[32];
|
||||||
BlindPublicKey (key, date, blinded);
|
key->GetBlindedKey (date, blinded);
|
||||||
if (memcmp (blindedPublicKey, blinded, 32))
|
if (memcmp (blindedPublicKey, blinded, 32))
|
||||||
{
|
{
|
||||||
LogPrint (eLogError, "LeaseSet2: blinded public key doesn't match");
|
LogPrint (eLogError, "LeaseSet2: blinded public key doesn't match");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// credentials
|
|
||||||
uint8_t credential[32], subcredential[36];
|
|
||||||
// A = destination's signing public key
|
|
||||||
// stA = signature type of A, 2 bytes big endian
|
|
||||||
uint16_t stA = htobe16 (key->GetSigType ());
|
|
||||||
// credential = H("credential", A || stA || stA1)
|
|
||||||
H ("credential", { {key->GetPublicKey (), key->GetPublicKeyLen ()}, {(const uint8_t *)&stA, 2}, {stA1, 2} }, credential);
|
|
||||||
// subcredential = H("subcredential", credential || blindedPublicKey)
|
|
||||||
H ("subcredential", { {credential, 32}, {blindedPublicKey, blindedKeyLen} }, subcredential);
|
|
||||||
// outer key
|
// outer key
|
||||||
// outerInput = subcredential || publishedTimestamp
|
// outerInput = subcredential || publishedTimestamp
|
||||||
|
uint8_t subcredential[36];
|
||||||
|
key->GetSubcredential (blindedPublicKey, blindedKeyLen, subcredential);
|
||||||
memcpy (subcredential + 32, publishedTimestamp, 4);
|
memcpy (subcredential + 32, publishedTimestamp, 4);
|
||||||
// outerSalt = outerCiphertext[0:32]
|
// outerSalt = outerCiphertext[0:32]
|
||||||
// keys = HKDF(outerSalt, outerInput, "ELS2_L1K", 44)
|
// keys = HKDF(outerSalt, outerInput, "ELS2_L1K", 44)
|
||||||
@ -563,6 +617,7 @@ namespace data
|
|||||||
std::vector<uint8_t> outerPlainText (lenOuterPlaintext);
|
std::vector<uint8_t> outerPlainText (lenOuterPlaintext);
|
||||||
i2p::crypto::ChaCha20 (outerCiphertext + 32, lenOuterPlaintext, keys, keys + 32, outerPlainText.data ());
|
i2p::crypto::ChaCha20 (outerCiphertext + 32, lenOuterPlaintext, keys, keys + 32, outerPlainText.data ());
|
||||||
// inner key
|
// inner key
|
||||||
|
// innerInput = authCookie || subcredential || publishedTimestamp, TODO: non-empty authCookie
|
||||||
// innerSalt = innerCiphertext[0:32]
|
// innerSalt = innerCiphertext[0:32]
|
||||||
// keys = HKDF(innerSalt, innerInput, "ELS2_L2K", 44)
|
// keys = HKDF(innerSalt, innerInput, "ELS2_L2K", 44)
|
||||||
// skip 1 byte flags
|
// skip 1 byte flags
|
||||||
@ -586,47 +641,6 @@ namespace data
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void LeaseSet2::H (const std::string& p, const std::vector<std::pair<const uint8_t *, size_t> >& bufs, uint8_t * hash)
|
|
||||||
{
|
|
||||||
SHA256_CTX ctx;
|
|
||||||
SHA256_Init (&ctx);
|
|
||||||
SHA256_Update (&ctx, p.c_str (), p.length ());
|
|
||||||
for (const auto& it: bufs)
|
|
||||||
SHA256_Update (&ctx, it.first, it.second);
|
|
||||||
SHA256_Final (hash, &ctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LeaseSet2::BlindPublicKey (std::shared_ptr<const BlindedPublicKey> key, const char * date, uint8_t * blindedKey)
|
|
||||||
{
|
|
||||||
uint16_t stA = htobe16 (key->GetSigType ()), stA1 = htobe16 (key->GetBlindedSigType ());
|
|
||||||
uint8_t salt[32], seed[64];
|
|
||||||
//seed = HKDF(H("I2PGenerateAlpha", keydata), datestring || secret, "i2pblinding1", 64)
|
|
||||||
H ("I2PGenerateAlpha", { {key->GetPublicKey (), key->GetPublicKeyLen ()}, {(const uint8_t *)&stA, 2}, {(const uint8_t *)&stA1, 2} }, salt);
|
|
||||||
i2p::crypto::HKDF (salt, (const uint8_t *)date, 8, "i2pblinding1", seed);
|
|
||||||
i2p::crypto::GetEd25519 ()->BlindPublicKey (key->GetPublicKey (), seed, blindedKey);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LeaseSet2::CalculateStoreHash (std::shared_ptr<const BlindedPublicKey> key, i2p::data::IdentHash& hash)
|
|
||||||
{
|
|
||||||
auto blindedKeyType = key->GetBlindedSigType ();
|
|
||||||
if (blindedKeyType != i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519 &&
|
|
||||||
blindedKeyType != SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519)
|
|
||||||
{
|
|
||||||
LogPrint (eLogError, "LeaseSet2: blinded key type ", (int)blindedKeyType, " is not supported");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
char date[9];
|
|
||||||
i2p::util::GetCurrentDate (date);
|
|
||||||
uint8_t blinded[32];
|
|
||||||
BlindPublicKey (key, date, blinded);
|
|
||||||
auto stA1 = htobe16 (blindedKeyType);
|
|
||||||
SHA256_CTX ctx;
|
|
||||||
SHA256_Init (&ctx);
|
|
||||||
SHA256_Update (&ctx, (const uint8_t *)&stA1, 2);
|
|
||||||
SHA256_Update (&ctx, blinded, 32);
|
|
||||||
SHA256_Final ((uint8_t *)hash, &ctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LeaseSet2::Encrypt (const uint8_t * data, uint8_t * encrypted, BN_CTX * ctx) const
|
void LeaseSet2::Encrypt (const uint8_t * data, uint8_t * encrypted, BN_CTX * ctx) const
|
||||||
{
|
{
|
||||||
auto encryptor = m_Encryptor; // TODO: atomic
|
auto encryptor = m_Encryptor; // TODO: atomic
|
||||||
|
@ -141,6 +141,15 @@ namespace data
|
|||||||
SigningKeyType GetSigType () const { return m_SigType; };
|
SigningKeyType GetSigType () const { return m_SigType; };
|
||||||
SigningKeyType GetBlindedSigType () const { return m_BlindedSigType; };
|
SigningKeyType GetBlindedSigType () const { return m_BlindedSigType; };
|
||||||
|
|
||||||
|
void GetSubcredential (const uint8_t * blinded, size_t len, uint8_t * subcredential) const; // 32 bytes
|
||||||
|
void GetBlindedKey (const char * date, uint8_t * blindedKey) const; // blinded key 32 bytes, date is 8 chars "YYYYMMDD"
|
||||||
|
i2p::data::IdentHash GetStoreHash () const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
void GetCredential (uint8_t * credential) const; // 32 bytes
|
||||||
|
void H (const std::string& p, const std::vector<std::pair<const uint8_t *, size_t> >& bufs, uint8_t * hash) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::vector<uint8_t> m_PublicKey;
|
std::vector<uint8_t> m_PublicKey;
|
||||||
@ -158,8 +167,6 @@ namespace data
|
|||||||
std::shared_ptr<const i2p::crypto::Verifier> GetTransientVerifier () const { return m_TransientVerifier; };
|
std::shared_ptr<const i2p::crypto::Verifier> GetTransientVerifier () const { return m_TransientVerifier; };
|
||||||
void Update (const uint8_t * buf, size_t len, bool verifySignature);
|
void Update (const uint8_t * buf, size_t len, bool verifySignature);
|
||||||
|
|
||||||
static void CalculateStoreHash (std::shared_ptr<const BlindedPublicKey> key, i2p::data::IdentHash& hash);
|
|
||||||
|
|
||||||
// implements RoutingDestination
|
// implements RoutingDestination
|
||||||
void Encrypt (const uint8_t * data, uint8_t * encrypted, BN_CTX * ctx) const;
|
void Encrypt (const uint8_t * data, uint8_t * encrypted, BN_CTX * ctx) const;
|
||||||
|
|
||||||
@ -175,10 +182,6 @@ namespace data
|
|||||||
|
|
||||||
uint64_t ExtractTimestamp (const uint8_t * buf, size_t len) const;
|
uint64_t ExtractTimestamp (const uint8_t * buf, size_t len) const;
|
||||||
|
|
||||||
// for encrypted LS
|
|
||||||
static void H (const std::string& p, const std::vector<std::pair<const uint8_t *, size_t> >& bufs, uint8_t * hash);
|
|
||||||
static void BlindPublicKey (std::shared_ptr<const BlindedPublicKey> key, const char * date, uint8_t * blindedKey); // blinded key 32 bytes, date is 8 chars "YYYYMMDD"
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
uint8_t m_StoreType;
|
uint8_t m_StoreType;
|
||||||
|
Loading…
Reference in New Issue
Block a user