mirror of
https://github.com/PurpleI2P/i2pd-tools
synced 2025-01-15 09:10:01 +00:00
allow EdDSA for B33
This commit is contained in:
parent
d7a079ad64
commit
309690575f
@ -14,7 +14,8 @@ int main(int argc, char * argv[])
|
|||||||
auto ident = std::make_shared<i2p::data::IdentityEx>();
|
auto ident = std::make_shared<i2p::data::IdentityEx>();
|
||||||
if (ident->FromBase64 (base64))
|
if (ident->FromBase64 (base64))
|
||||||
{
|
{
|
||||||
if (ident->GetSigningKeyType () == i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519)
|
if (ident->GetSigningKeyType () == i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519 ||
|
||||||
|
ident->GetSigningKeyType () == i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519)
|
||||||
{
|
{
|
||||||
i2p::data::BlindedPublicKey blindedKey (ident);
|
i2p::data::BlindedPublicKey blindedKey (ident);
|
||||||
std::cout << "b33 address: " << blindedKey.ToB33 () << ".b32.i2p" << std::endl;
|
std::cout << "b33 address: " << blindedKey.ToB33 () << ".b32.i2p" << std::endl;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user