From 6e5f10a7907eb56293b5683ee556f0cee310c4b3 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sun, 22 Mar 2026 03:13:56 -0700 Subject: [PATCH] Reattempt to fetch test vectors when online. --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fae769d..39cd467 100644 --- a/index.html +++ b/index.html @@ -35,7 +35,11 @@ SPDX-License-Identifier: GPL-3.0-or-later try { ({ NANO_ORG_VECTOR, PYTHON_ED25519_BLAKE2B_VECTORS } = await import('./vectors.mjs')) } catch (err) { - console.error(err) + try { + ({ NANO_ORG_VECTOR, PYTHON_ED25519_BLAKE2B_VECTORS } = await import('https://git.codecow.com/?p=nano25519.git;a=blob_plain;f=vectors.mjs;hb=refs/heads/main')) + } catch (err) { + console.error(err) + } } /** -- 2.47.3