From c95dee84f2049815dae6125029095fdc3661d487 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Tue, 6 Dec 2022 19:00:35 +0100 Subject: [PATCH] Changing backend service url. Signed-off-by: Pol Henarejos --- tools/pico-hsm-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pico-hsm-tool.py b/tools/pico-hsm-tool.py index 7236a20..bbad3b8 100644 --- a/tools/pico-hsm-tool.py +++ b/tools/pico-hsm-tool.py @@ -192,7 +192,7 @@ def get_pki_data(url, data=None, method='GET'): method = 'GET' if (data is not None): method = 'POST' - req = urllib.request.Request(f"https://www.henarejos.me/pico/pico-hsm/{url}/", + req = urllib.request.Request(f"https://www.picokeys.com/pico/pico-hsm/{url}/", method=method, data=data, headers={'User-Agent': user_agent, })