Skip to content

feat: add Substitution Cipher algorithm and tests #1773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: update import path in SubstitutionCipher test for correct folder…
… structure
  • Loading branch information
mmohamedkhaled committed Apr 4, 2025
commit 56542d68a647252e13531028df6a5751006138a4
3 changes: 2 additions & 1 deletion Ciphers/test/SubstitutionCipher.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { describe, it, expect } from 'vitest'
import {
substitutionCipherEncryption,
substitutionCipherDecryption
} from '../ciphers/SubstitutionCipher.js'
} from '../SubstitutionCipher.js'


describe('Substitution Cipher', () => {
const key = 'QWERTYUIOPASDFGHJKLZXCVBNM'
Expand Down
Loading