From 2220f6587867f4370155590e636bafd54b6947c3 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Tue, 25 Aug 2026 07:55:57 -0700 Subject: [PATCH] Refactor: Update imports to local TS cipher modules Co-authored-by: gemini-3.7-flash --- dash.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dash.ts b/dash.ts index ba8c175..14e61e7 100644 --- a/dash.ts +++ b/dash.ts @@ -1,6 +1,6 @@ import zwus from 'zwus'; -import * as speck48_96ctr from './speck48_96ctr.js'; -import * as speck32_64ecb from './speck32_64ecb.js'; +import * as speck48_96ctr from './speck48_96ctr.ts'; +import * as speck32_64ecb from './speck32_64ecb.ts'; type Cipher = 'PLAIN' | 'SPECK48_96CTR' | 'SPECK32_64ECB (insecure)'; type Op = 'NO' | 'YES';