-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Add Baconian Cipher #1416
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
Closed
Closed
Add Baconian Cipher #1416
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 hidden or 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,101 @@ | ||
/** | ||
* In cryptography, Bacon's cipher or the Baconian cipher is a method of steganographic message encoding devised by Francis Bacon in 1605. | ||
* See [wiki](https://en.wikipedia.org/wiki/Bacon%27s_cipher) | ||
*/ | ||
|
||
const baconianAlphabet = { | ||
A: 'AAAAA', | ||
B: 'AAAAB', | ||
C: 'AAABA', | ||
D: 'AAABB', | ||
E: 'AABAA', | ||
F: 'AABAB', | ||
G: 'AABBA', | ||
H: 'AABBB', | ||
I: 'ABAAA', | ||
J: 'ABAAB', | ||
K: 'ABABA', | ||
L: 'ABABB', | ||
M: 'ABBAA', | ||
N: 'ABBAB', | ||
O: 'ABBBA', | ||
P: 'ABBBB', | ||
Q: 'BAAAA', | ||
R: 'BAAAB', | ||
S: 'BAABA', | ||
T: 'BAABB', | ||
U: 'BABAA', | ||
V: 'BABAB', | ||
W: 'BABBA', | ||
X: 'BABBB', | ||
Y: 'BBAAA', | ||
Z: 'BBAAB', | ||
' ': ' ' | ||
} | ||
|
||
/** | ||
* @function baconianEncode | ||
* @description - Encodes a message using baconian cipher | ||
* @param {string} message - Message to encode | ||
* @return {string} A string with the encoded message | ||
*/ | ||
const baconianEncode = (message) => { | ||
if (typeof message !== 'string') { | ||
throw new TypeError('The message must be a string') | ||
} | ||
|
||
message = message.toUpperCase() | ||
|
||
let result = '' | ||
|
||
message.split('').forEach((char) => { | ||
result += baconianAlphabet[char] | ||
}) | ||
|
||
return result | ||
} | ||
|
||
/** | ||
* @function baconianDecode | ||
* @description - Decoded a message encoded using baconian cipher | ||
* @param {string} message - Message to decode | ||
* @return {string} A string with the decoded message | ||
*/ | ||
const baconianDecode = (message) => { | ||
if (typeof message !== 'string') { | ||
throw new TypeError('The encoded message must be a string') | ||
} | ||
|
||
if (!/^[AB ]+$/.test(message)) { | ||
throw new TypeError('The encoded message should consist only of "A"s, "B"s and whitespaces') | ||
} | ||
|
||
message = message.toUpperCase() | ||
|
||
let result = '' | ||
const messageArray = message.split(' ') | ||
|
||
messageArray.forEach((word, index) => { | ||
for (let i = 0; i < word.length; i += 5) { | ||
const letter = Object.keys(baconianAlphabet).find( | ||
(key) => { | ||
return baconianAlphabet[key] === word.substring(i, i + 5) | ||
} | ||
) | ||
|
||
if (letter) { | ||
result += letter | ||
} | ||
} | ||
if (index < messageArray.length - 1) { | ||
result += ' ' | ||
} | ||
}) | ||
|
||
return result | ||
} | ||
|
||
export { | ||
baconianEncode, | ||
baconianDecode | ||
} |
This file contains hidden or 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,17 @@ | ||
import { | ||
baconianEncode, | ||
baconianDecode | ||
} from '../BaconianCipher' | ||
|
||
test('"Hello world" === baconianDecode(baconianEncode("Hello world"))', () => { | ||
const word = 'Hello world' | ||
const expectedResult = 'HELLO WORLD' | ||
const result = baconianDecode(baconianEncode(word)) | ||
expect(result).toMatch(expectedResult) | ||
}) | ||
|
||
test('"AABBBAABAAABABBABABBABBBA BABBAABBBABAAABABABBAAABB" === baconianEncode(baconianDecode("AABBBAABAAABABBABABBABBBA BABBAABBBABAAABABABBAAABB"))', () => { | ||
const word = 'AABBBAABAAABABBABABBABBBA BABBAABBBABAAABABABBAAABB' | ||
const result = baconianEncode(baconianDecode(word)) | ||
expect(result).toMatch(word) | ||
}) |
This file contains hidden or 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
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.