Skip to content

Commit

Permalink
Exchange default german plaintext in CTO plugins
Browse files Browse the repository at this point in the history
Before: Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.
After:  Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.
  • Loading branch information
z11labs committed Oct 19, 2021
1 parent 29f5b5f commit e13182e
Show file tree
Hide file tree
Showing 31 changed files with 75 additions and 75 deletions.
4 changes: 2 additions & 2 deletions _ctoApps/codings/src/bacon/locales/de/bacon.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Bacon-Kodierung",
"DESCRIPTION": "<h1>Die Bacon-Kodierung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "baaab baaba aaaaa abbaa ababa aabaa babba baaab aabaa babab abbba aabaa aaabb abaaa baaba abaaa abbab abbaa baaab babbb baabb aabba abbbb baabb aabaa baaaa aaabb baabb baaaa aaaba aabbb aaaaa aabab baaaa abaaa abaab aaaaa babaa abaaa baaaa aaabb baabb abbab abbaa abaaa aabaa aaabb aabaa baaaa ababb aaaaa abbaa abbaa aaaab aabaa babaa baabb abbaa aaabb aabaa baaaa baaba ",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "aabab baaaa aaaaa abbaa babbb abaaa aaaaa aabba baaba abaaa ababb abaab abbab ababb abbba ababa aabaa baaba baaba baabb aabaa baaaa babaa aaaaa aabbb baaaa ababa abbab baaab baaba aabaa abbaa baaba aaaaa babab abaaa abbbb baabb aabaa baaaa aaabb baabb baaaa aaaba aabbb aaaab aaaaa babba aabaa baaaa abbaa ",
"SAMPLE_KEY": "Geheimer Schluessel"
}
6 changes: 3 additions & 3 deletions _ctoApps/codings/src/bacon/t_bacon.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Bacon', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'aabab baaaa aaaaa abbaa babbb abaaa aaaaa aabba baaba abaaa ababb abaab abbab ababb abbba ababa aabaa baaba baaba baabb aabaa baaaa babaa aaaaa aabbb baaaa ababa abbab baaab baaba aabaa abbaa baaba aaaaa babab abaaa abbbb baabb aabaa baaaa aaabb baabb baaaa aaaba aabbb aaaab aaaaa babba aabaa baaaa abbaa ';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Bacon', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'baaba aabbb aabaa abbbb baabb abaaa aaaba abaab aaaab baaaa abbab babaa abbaa aabab abbab babab abaaa baabb ababb abbba baaab abbab baabb aabaa baaaa baaba aabbb aabaa ababa aaaaa babbb babba aaabb abbab aabba ';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
4 changes: 2 additions & 2 deletions _ctoApps/codings/src/base64/locales/de/base64.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Base64-Kodierung",
"DESCRIPTION": "<h1>Die Base64-Kodierung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "U3RhbmxleXMgRXhwZWRpdGlvbnN6dWcgcXVlciBkdXJjaCBBZnJpa2Egd2lyZCB2b24gamVkZXJtYW5uIGJld3VuZGVydC4=",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "RnJhbnogamFndCBpbSBrb21wbGV0dCB2ZXJ3YWhybG9zdGVuIFRheGkgcXVlciBkdXJjaCBCYXllcm4u",
"SAMPLE_KEY": "Geheimer Schluessel"
}
6 changes: 3 additions & 3 deletions _ctoApps/codings/src/base64/t_base64.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Base64', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'RnJhbnogamFndCBpbSBrb21wbGV0dCB2ZXJ3YWhybG9zdGVuIFRheGkgcXVlciBkdXJjaCBCYXllcm4u';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Base64', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'VGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIHRoZSBsYXp5IGRvZy4=';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Huffman', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = '10111000111100001010000111100001110101111010101110000100100111100011001110010110010100011111010101010111101101111001110111111001001001100011001111010001011111000101111010111100000010000011110011101001111001011101101101000011011000100101110101111100000111110010001101010';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Huffman', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = '011011010110011100101011101000111111110010111011111011100101101111010001100000110111000011000100111010011101001010111101011011101001111001100110010101100111000110111101101001000111000000101100010111100';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
4 changes: 2 additions & 2 deletions _ctoApps/codings/src/morsecode/locales/de/morsecode.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Morsecode",
"DESCRIPTION": "<h1>Morsecode</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "... - .- -. .-.. . -.-- ... / . -..- .--. . -.. .. - .. --- -. ... --.. ..- --. / --.- ..- . .-. / -.. ..- .-. -.-. .... / .- ..-. .-. .. -.- .- / .-- .. .-. -.. / ...- --- -. / .--- . -.. . .-. -- .- -. -. / -... . .-- ..- -. -.. . .-. - .-.-.- ",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "..-. .-. .- -. --.. / .--- .- --. - / .. -- / -.- --- -- .--. .-.. . - - / ...- . .-. .-- .- .... .-. .-.. --- ... - . -. / - .- -..- .. / --.- ..- . .-. / -.. ..- .-. -.-. .... / -... .- -.-- . .-. -. .-.-.- ",
"SAMPLE_KEY": "Geheimer Schluessel"
}
8 changes: 4 additions & 4 deletions _ctoApps/codings/src/morsecode/t_morsecode.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Morsecode', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'FRANZ JAGT IM KOMPLETT VERWAHRLOSTEN TAXI QUER DURCH BAYERN.';
const encoded = '..-. .-. .- -. --.. / .--- .- --. - / .. -- / -.- --- -- .--. .-.. . - - / ...- . .-. .-- .- .... .-. .-.. --- ... - . -. / - .- -..- .. / --.- ..- . .-. / -.. ..- .-. -.-. .... / -... .- -.-- . .-. -. .-.-.- ';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -37,8 +37,8 @@ describe('Morsecode', () => {
});
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const plain = 'THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.';
const encoded = '- .... . / --.- ..- .. -.-. -.- / -... .-. --- .-- -. / ..-. --- -..- / .--- ..- -- .--. ... / --- ...- . .-. / - .... . / .-.. .- --.. -.-- / -.. --- --. .-.-.- ';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
4 changes: 2 additions & 2 deletions _ctoApps/openssl/src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"inputPlaceHolder": "Eingabe...",
"hexValue": "Hex-Wert...",
"noSalt": "Kein Salt verwenden",
"inputExampleText": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert."
"inputExampleText": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern."
},
"tabGenrsa": {
"name": "RSA-Schlüsselgenerierung",
Expand All @@ -55,7 +55,7 @@
"input": "Eingabe",
"file": "Datei",
"outputFile": "Ausgabedatei",
"inputExampleText": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert."
"inputExampleText": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern."
},
"tabFiles": {
"name": "Dateien",
Expand Down
2 changes: 1 addition & 1 deletion _ctoApps/password/src/passcheck/locales/de/passcheck.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Passwort-Check",
"DESCRIPTION": "<h1>Passwort-Check</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": " ",
"SAMPLE_KEY": "Geheimer Schluessel"
}
6 changes: 3 additions & 3 deletions _ctoApps/password/src/passcheck/t_passcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Passcheck', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Passcheck', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'The quick brown fox jumps over the lazy dog.';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
2 changes: 1 addition & 1 deletion _ctoApps/password/src/passgen/locales/de/passgen.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Passwort-Generator",
"DESCRIPTION": "<h1>Passwort-Generator</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": " ",
"SAMPLE_KEY": "Geheimer Schluessel"
}
6 changes: 3 additions & 3 deletions _ctoApps/password/src/passgen/t_passgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Passgen', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Passgen', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'The quick brown fox jumps over the lazy dog.';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/railfence/locales/de/railfence.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"TITLE": "Jägerzaun-Verschlüsselung (Zick-Zack)",
"DESCRIPTION": "<h1>Die Railfence-Verschlüsselung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "SEoefdru tsxinurArrvemw nayp tsqdh iiodae dnee izg uckwnenbe tldurajnr.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "FtehT derg il tarnaruy raamptwlexera nnjk mvro tiucB zoesqh.",
"SAMPLE_KEY": "Geheimer Schluessel",
"RAILFENCE": "S E o e f d r u \n t s x i n u r A r r v e m w n \n a y p t s q d h i i o d a e d \n n e e i z g u c k w n e n b e t\n l d u r a j n r "
"RAILFENCE": "F t e h T d e \n r g i l t a r n a r u y r \n a a m p t w l e x e r a n\n n j k m v r o t i u c B \n z o e s q h "
}
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/railfence/t_railfence.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Railfence', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'FtehT derg il tarnaruy raamptwlexera nnjk mvro tiucB zoesqh.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Railfence', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'Tbj rdhkr xuety oec oomvh zgqi wfp oeau nsl.';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/redefence/locales/de/redefence.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"TITLE": "Redefence-Verschlüsselung",
"DESCRIPTION": "<h1>Die Redefence-Verschlüsselung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "tsxinurA rrvemwnSEoefdr unee izguc kwnenb etay pts qdhiiodae dldurajnr.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "rgilt arna ru yrFtehTd enjkmvrotiucB aamp twle xeran zoesqh.",
"SAMPLE_KEY": "Geheimer Schluessel",
"RAILFENCE": "S E o e f d r u \n t s x i n u r A r r v e m w n \n a y p t s q d h i i o d a e d \n n e e i z g u c k w n e n b e t\n l d u r a j n r "
"RAILFENCE": "F t e h T d e \n r g i l t a r n a r u y r \n a a m p t w l e x e r a n\n n j k m v r o t i u c B \n z o e s q h "
}
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/redefence/t_redefence.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Redefence', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'rgilt arna ru yrFtehTd enjkmvrotiucB aamp twle xeran zoesqh.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Redefence', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'hkr xuety oTbjr dqi wfpoe aeco omv hzgu nsl.';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/skytale/locales/de/skytale.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"TITLE": "Skytale-Verschlüsselung",
"DESCRIPTION": "<h1>Die Skytale-Verschlüsselung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "Stroutic nnaohjdnnAeels fdre zrety uirsgk mEqa axu wnpeinerr bdddeiuvw.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "Fpsrr ltca ee hntnBztT ajvayaexegrir twqn iaum hekrr oldmou.",
"SAMPLE_KEY": "ABC",
"RAILFENCE": "| S | t | a | n | l | e | y | s | E | x | p | e | d | i | \n| t | i | o | n | s | z | u | g | q | u | e | r | d | u | \n| r | c | h | A | f | r | i | k | a | w | i | r | d | v | \n| o | n | j | e | d | e | r | m | a | n | n | b | e | w | \n| u | n | d | e | r | t | | | | | | | | | "
"RAILFENCE": "| F | r | a | n | z | j | a | g | t | i | m | k | o | m | \n| p | l | e | t | t | v | e | r | w | a | h | r | l | o | \n| s | t | e | n | T | a | x | i | q | u | e | r | d | u | \n| r | c | h | B | a | y | e | r | n | | | | | | "
}
6 changes: 3 additions & 3 deletions _ctoApps/railfence/src/skytale/t_skytale.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ describe('Skytale', () => {
assert.equal('Aa', crypt.process('Zz', true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Yxhrtqcj Wzwpxmlasyydbk ygii vwynb Exjmvg apvl hse bgkplqsfr mkabrlqvk.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'Fpsrr ltca ee hntnBztT ajvayaexegrir twqn iaum hekrr oldmou.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -38,7 +38,7 @@ describe('Skytale', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Llg hybmo zjsye jhh nsetu fzxb xfw pcqc wyk.';
const encoded = 'Tol hxaej zquyu mdi pocsg kobv reo rwtn hfe.';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
2 changes: 1 addition & 1 deletion _ctoApps/taxman/src/taxman/locales/de/taxman.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Taxman",
"DESCRIPTION": "<h1>Taxman</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": " ",
"SAMPLE_KEY": "Geheimer Schluessel",
"SCORE": "Ihre Punktzahl:",
Expand Down
4 changes: 2 additions & 2 deletions _ctoApps/vigenere/src/autokey/locales/de/autokey.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Autokey-Verschlüsselung",
"DESCRIPTION": "<h1>Die Autokey-Verschlüsselung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "Yxhrtqcj Wzwpxmlasyksut bycj hrggk Iyzwxs vcxt pse myugymfev lescegzfg.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "Lvhrh vexl kt viqhdiey meevjhxewedsz Ilbb jpii zuyts Psrieg.",
"SAMPLE_KEY": "Geheimer Schluessel"
}
4 changes: 2 additions & 2 deletions _ctoApps/vigenere/src/beaufort/locales/de/beaufort.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE": "Beaufort-Verschlüsselung",
"DESCRIPTION": "<h1>Die Beaufort-Verschlüsselung</h1>",
"SAMPLE_PLAIN": "Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.",
"SAMPLE_ENCRYPTED": "Olhrxigz Ofshrwzkqyofny ssaa piqjn Enbwbg iznf rqe jyehdssfr kcinrfiny.",
"SAMPLE_PLAIN": "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.",
"SAMPLE_ENCRYPTED": "Bnhrj delz uv bgsdhasn jdnmmxahopsqr Zshd qkdn fsnpl Bhnqnf.",
"SAMPLE_KEY": "Geheimer Schluessel"
}
6 changes: 3 additions & 3 deletions _ctoApps/vigenere/src/beaufort/t_beaufort.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ describe('Beaufort', () => {
assert.equal(plain, crypt.process(encrypted, true));
});
describe('1st reference value', () => {
const plain = 'Stanleys Expeditionszug quer durch Afrika wird von jedermann bewundert.';
const encoded = 'Olhrxigz Ofshrwzkqyofny ssaa piqjn Enbwbg iznf rqe jyehdssfr kcinrfiny.';
const plain = 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.';
const encoded = 'Bnhrj delz uv bgsdhasn jdnmmxahopsqr Zshd qkdn fsnpl Bhnqnf.';

beforeEach(() => {
state.$key.val = () => ('Geheimer Schluessel');
Expand All @@ -41,7 +41,7 @@ describe('Beaufort', () => {
});
describe('2nd reference value', () => {
const plain = 'The quick brown fox jumps over the lazy dog.';
const encoded = 'Zxy bkliu xbqge zfn vegpk djpt lro tcsg qwy.';
const encoded = 'Nxd ooech rltph zev vrupp qnin yly wlvg pey..';

beforeEach(() => {
state.$key.val = () => ('Secret Key');
Expand Down
Loading

0 comments on commit e13182e

Please sign in to comment.