bump i2pd. fix build error

This commit is contained in:
orignal 2019-02-08 13:49:29 -05:00
parent 7c549e609e
commit 32764ae378
2 changed files with 3 additions and 2 deletions

View file

@ -73,7 +73,8 @@ static std::shared_ptr<Verifier> LoadCertificate (const std::string& filename)
bn2buf (x, signingKey, 32); bn2buf (x, signingKey, 32);
bn2buf (y, signingKey + 32, 32); bn2buf (y, signingKey + 32, 32);
BN_free (x); BN_free (y); BN_free (x); BN_free (y);
verifier = std::make_shared<ECDSAP256Verifier>(signingKey); verifier = std::make_shared<i2p::crypto::ECDSAP256Verifier>();
verifier->SetPublicKey (signingKey);
} }
} }
EC_KEY_free (ecKey); EC_KEY_free (ecKey);

2
i2pd

@ -1 +1 @@
Subproject commit df304fb38b07790dc42bb8f73262fa8a3b7111d0 Subproject commit 1eb726c9bb07eb989c55e56495f9ab2aec7bb6d0