From 68f62ee88db561b3ab8e253e8c23dcf4f3eb2a58 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Mon, 19 Aug 2024 14:04:06 +0200 Subject: [PATCH] Fix age key generation to convert pubkey to string Change-Id: I8eb1c7ec0c865f02e2830c8fea2b3307a517972e Signed-off-by: garciadeblas --- osm_nbi/base_topic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm_nbi/base_topic.py b/osm_nbi/base_topic.py index 252a72a..35514a5 100644 --- a/osm_nbi/base_topic.py +++ b/osm_nbi/base_topic.py @@ -1018,7 +1018,7 @@ class BaseTopic: def _generate_age_key(self): ident = x25519.Identity.generate() # gets the public key - pubkey = ident.to_public() + pubkey = str(ident.to_public()) # gets the private key privkey = str(ident) # return both public and private key -- 2.25.1