Refactor: Update imports to local TS cipher modules

Co-authored-by: gemini-3.7-flash <noreply@google.com>
This commit is contained in:
2026-08-25 07:55:57 -07:00
parent de59802ea1
commit 2220f65878

View File

@@ -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';