-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Create vigenere.js #1982
Open
VICKY15032008
wants to merge
2
commits into
gchq:master
Choose a base branch
from
VICKY15032008:vigenere_upgrade
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Create vigenere.js #1982
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/** | ||
* Cleans the input text by removing spaces and ensuring it contains only alphanumeric characters. | ||
* @param {string} text - The input text to be cleaned. | ||
* @returns {string} The cleaned text without spaces or special characters. | ||
* @throws Will throw an error if special characters are found. | ||
*/ | ||
function cleanText(text) { | ||
const textNoSpaces = text.replace(/ /g, ""); | ||
if (/[^A-Za-z0-9]/.test(textNoSpaces)) { | ||
throw new Error("Special characters detected. They must be removed."); | ||
} | ||
return textNoSpaces; | ||
} | ||
|
||
/** | ||
* Encrypts a message using a key with a substitution cipher. | ||
* @param {string} message - The message to encrypt. | ||
* @param {string} key - The encryption key. | ||
* @returns {string} The encrypted message. | ||
*/ | ||
function encrypt(message, key) { | ||
message = message.toLowerCase(); | ||
key = key.toLowerCase(); | ||
const combinedAlphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; | ||
const n = combinedAlphabet.length; | ||
const encrypted = []; | ||
let keyIndex = 0; | ||
|
||
for (const char of message) { | ||
if (combinedAlphabet.includes(char)) { | ||
const mIndex = combinedAlphabet.indexOf(char); | ||
const keyChar = key[keyIndex % key.length]; | ||
const shift = combinedAlphabet.indexOf(keyChar); | ||
const newIndex = (mIndex + shift) % n; | ||
encrypted.push(combinedAlphabet[newIndex]); | ||
keyIndex++; | ||
} | ||
} | ||
return encrypted.join(""); | ||
} | ||
|
||
/** | ||
* Decrypts an encrypted message using a key with a substitution cipher. | ||
* @param {string} cipherText - The encrypted message to decrypt. | ||
* @param {string} key - The decryption key. | ||
* @returns {string} The decrypted message. | ||
*/ | ||
function decrypt(cipherText, key) { | ||
cipherText = cipherText.toLowerCase(); | ||
key = key.toLowerCase(); | ||
const combinedAlphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; | ||
const n = combinedAlphabet.length; | ||
const decrypted = []; | ||
let keyIndex = 0; | ||
|
||
for (const char of cipherText) { | ||
if (combinedAlphabet.includes(char)) { | ||
const cIndex = combinedAlphabet.indexOf(char); | ||
const keyChar = key[keyIndex % key.length]; | ||
const shift = combinedAlphabet.indexOf(keyChar); | ||
const originalIndex = (cIndex - shift + n) % n; | ||
decrypted.push(combinedAlphabet[originalIndex]); | ||
keyIndex++; | ||
} | ||
} | ||
return decrypted.join(""); | ||
} | ||
|
||
/** | ||
* The main function to clean, encrypt, and decrypt messages. | ||
*/ | ||
function main() { | ||
try { | ||
const rawMessage = prompt("Enter the message: "); | ||
const rawKey = prompt("Enter the key: "); | ||
const cleanedMessage = cleanText(rawMessage); | ||
const cleanedKey = cleanText(rawKey); | ||
|
||
Check warning on line 78 in vigenere.js
|
||
if (!cleanedMessage) throw new Error("Message is empty after cleaning!"); | ||
if (!cleanedKey) throw new Error("Key is empty after cleaning!"); | ||
|
||
const encryptedMsg = encrypt(cleanedMessage, cleanedKey); | ||
alert(`Encrypted Message: ${encryptedMsg}`); | ||
const decryptedMsg = decrypt(encryptedMsg, cleanedKey); | ||
alert(`Decrypted Message: ${decryptedMsg}`); | ||
} catch (e) { | ||
alert(`An error occurred: ${e.message}`); | ||
} | ||
} | ||
|
||
main(); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in these peice of code you can use it for the alphabets and including numbers and removing out all the traces of punctuation marks and special characters and making it easy to work with and along side these code has both the encryption and decryption codes