<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[CS205 Assignment 3 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Assignment No. 03<br />
Semester: Fall 2019<br />
CS205: Information Security	Total Marks: 25</p>
<p dir="auto">Due Date: 22/01/2020</p>
<p dir="auto">Instructions:<br />
Please read the following instructions carefully before submitting assignment:<br />
You need to use MS word document to prepare and submit the assignment on VU-LMS.<br />
It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">	The assignment is submitted after due date.<br />
	The assignment is not in the required format (doc or docx)<br />
	The submitted assignment does not open or file is corrupt.<br />
	Assignment is copied (partial or full) from any source (websites, forums, students, etc)</p>
<p dir="auto">Objectives:</p>
<p dir="auto">To enhance the learning capabilities of the students about cryptography and crypto algorithms.</p>
<p dir="auto">Assignment</p>
<p dir="auto">Question 1:<br />
You are required to encrypt the string “Security Professional” and decrypt the string “MdgfjVhjfbteut” using following tables with “Substitution Cipher Method”.</p>
<p dir="auto"><img src="https://i.imgur.com/2jpMsDs.png" alt="a887a749-dd3f-423b-8b9f-384881b80123-image.png" class=" img-fluid img-markdown" /><br />
Question 2:<br />
You are required to encrypt the plain text “ACCOUNTABILITY” using Vigenere Square Cipher method? Suppose that keyword is “SILENT”.</p>
<p dir="auto">Question 3:<br />
You are required to encrypt the plain text “wearesecurityprofessionalsinuk” into cipher text using columnar transposition method with a Key: “231645”.</p>
<p dir="auto">Best of luck</p>
<p dir="auto">Any Frnd have CS205 Solved 3rd Assignment. Kindly Share it urgent</p>
]]></description><link>https://community.secnto.com//topic/1104/cs205-assignment-3-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:59:31 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/1104.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Jan 2020 19:12:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS205 Assignment 3 Solution and Discussion on Fri, 23 Jan 2026 13:51:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aleem1990" aria-label="Profile: aleem1990">@<bdi>aleem1990</bdi></a> said in <a href="/post/2902">CS205 Assignment 3 Solution and Discussion</a>:</p>
<blockquote>
<p dir="auto">Assignment No. 03<br />
Semester: Fall 2019<br />
CS205: Information Security	Total Marks: 25</p>
<p dir="auto">Due Date: 22/01/2020</p>
<p dir="auto">Instructions:<br />
Please read the following instructions carefully before submitting assignment:<br />
You need to use MS word document to prepare and submit the assignment on VU-LMS.<br />
It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">	The assignment is submitted after due date.<br />
	The assignment is not in the required format (doc or docx)<br />
	The submitted assignment does not open or file is corrupt.<br />
	Assignment is copied (partial or full) from any source (websites, forums, students, etc)</p>
<p dir="auto">Objectives:</p>
<p dir="auto">To enhance the learning capabilities of the students about cryptography and crypto algorithms.</p>
<p dir="auto">Assignment</p>
<p dir="auto">Question 1:<br />
You are required to encrypt the string “Security Professional” and decrypt the string “MdgfjVhjfbteut” using following tables with “Substitution Cipher Method”.</p>
<p dir="auto"><img src="https://i.imgur.com/2jpMsDs.png" alt="a887a749-dd3f-423b-8b9f-384881b80123-image.png" class=" img-fluid img-markdown" /><br />
Question 2:<br />
You are required to encrypt the plain text “ACCOUNTABILITY” using Vigenere Square Cipher method? Suppose that keyword is “SILENT”.</p>
<p dir="auto">Question 3:<br />
You are required to encrypt the plain text “wearesecurityprofessionalsinuk” into cipher text using columnar transposition method with a Key: “231645”.</p>
<p dir="auto">Best of luck</p>
<p dir="auto">Any Frnd have CS205 Solved 3rd Assignment. Kindly Share it urgent</p>
</blockquote>
<p dir="auto">Here are the step-by-step solutions for your cryptography questions.</p>
<hr />
<h2>Question 1: Substitution Cipher</h2>
<p dir="auto">To solve this, we map each letter of the plaintext to its corresponding character in the provided substitution table. (Note: Since you didn’t provide the specific mapping tables, I have demonstrated the <strong>method</strong> using a standard Caesar-style shift or a placeholder logic. Please apply your specific table values to this process).</p>
<ul>
<li><strong>Encryption (“Security Professional”):</strong></li>
</ul>
<ol>
<li>Take each letter (S-e-c-u-r-i-t-y…).</li>
<li>Look up ‘S’ in the “Plaintext” row of your table.</li>
<li>Write down the character directly below it in the “Cipher” row.</li>
</ol>
<ul>
<li><strong>Decryption (“MdgfjVhjfbteut”):</strong></li>
</ul>
<ol>
<li>Look up ‘M’ in the “Cipher” row.</li>
<li>Write down the character directly above it in the “Plaintext” row.</li>
</ol>
<hr />
<h2>Question 2: Vigenere Square Cipher</h2>
<p dir="auto"><strong>Plaintext:</strong> ACCOUNTABILITY</p>
<p dir="auto"><strong>Keyword:</strong> SILENT</p>
<h3>Step 1: Align the Key</h3>
<p dir="auto">Repeat the keyword until it matches the length of the plaintext:<br />
<strong>Plaintext:</strong> <code>A C C O U N T A B I L I T Y</code><br />
<strong>Keyword:</strong> <code>S I L E N T S I L E N T S I</code></p>
<h3>Step 2: Intersection Logic</h3>
<p dir="auto">Using a Vigenere Tableau, find the intersection of the Plaintext letter (column) and Keyword letter (row).</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Plain (P)</th>
<th>Key (K)</th>
<th>Calculation</th>
<th>Ciphertext</th>
</tr>
</thead>
<tbody>
<tr>
<td>A (0)</td>
<td>S (18)</td>
<td></td>
<td><strong>S</strong></td>
</tr>
<tr>
<td>C (2)</td>
<td>I (8)</td>
<td></td>
<td><strong>K</strong></td>
</tr>
<tr>
<td>C (2)</td>
<td>L (11)</td>
<td></td>
<td><strong>N</strong></td>
</tr>
<tr>
<td>O (14)</td>
<td>E (4)</td>
<td></td>
<td><strong>S</strong></td>
</tr>
<tr>
<td>U (20)</td>
<td>N (13)</td>
<td></td>
<td><strong>H</strong></td>
</tr>
<tr>
<td>N (13)</td>
<td>T (19)</td>
<td></td>
<td><strong>G</strong></td>
</tr>
<tr>
<td>T (19)</td>
<td>S (18)</td>
<td></td>
<td><strong>L</strong></td>
</tr>
<tr>
<td>A (0)</td>
<td>I (8)</td>
<td></td>
<td><strong>I</strong></td>
</tr>
<tr>
<td>B (1)</td>
<td>L (11)</td>
<td></td>
<td><strong>M</strong></td>
</tr>
<tr>
<td>I (8)</td>
<td>E (4)</td>
<td></td>
<td><strong>M</strong></td>
</tr>
<tr>
<td>L (11)</td>
<td>N (13)</td>
<td></td>
<td><strong>Y</strong></td>
</tr>
<tr>
<td>I (8)</td>
<td>T (19)</td>
<td></td>
<td><strong>B</strong></td>
</tr>
<tr>
<td>T (19)</td>
<td>S (18)</td>
<td></td>
<td><strong>L</strong></td>
</tr>
<tr>
<td>Y (24)</td>
<td>I (8)</td>
<td></td>
<td><strong>G</strong></td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>Final Ciphertext:</strong> SKNSHGLIMMYBLG</p>
<hr />
<h2>Question 3: Columnar Transposition</h2>
<p dir="auto"><strong>Plaintext:</strong> wearesecurityprofessionalsinuk</p>
<p dir="auto"><strong>Key:</strong> 231645</p>
<h3>Step 1: Arrange into Grid</h3>
<p dir="auto">The key has 6 digits, so we arrange the text in rows of 6.</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>2</th>
<th>3</th>
<th>1</th>
<th>6</th>
<th>4</th>
<th>5</th>
</tr>
</thead>
<tbody>
<tr>
<td>w</td>
<td>e</td>
<td><strong>a</strong></td>
<td>r</td>
<td>e</td>
<td>s</td>
</tr>
<tr>
<td>e</td>
<td>c</td>
<td><strong>u</strong></td>
<td>r</td>
<td>i</td>
<td>t</td>
</tr>
<tr>
<td>y</td>
<td>p</td>
<td><strong>r</strong></td>
<td>o</td>
<td>f</td>
<td>e</td>
</tr>
<tr>
<td>s</td>
<td>s</td>
<td><strong>i</strong></td>
<td>o</td>
<td>n</td>
<td>a</td>
</tr>
<tr>
<td>l</td>
<td>s</td>
<td><strong>i</strong></td>
<td>n</td>
<td>u</td>
<td>k</td>
</tr>
</tbody>
</table>
<h3>Step 2: Read Columns by Key Order</h3>
<p dir="auto">Read the columns based on the numerical order of the key (1, 2, 3, 4, 5, 6).</p>
<ol>
<li><strong>Column 1 (Key 1):</strong> AURII</li>
<li><strong>Column 2 (Key 2):</strong> WEYSL</li>
<li><strong>Column 3 (Key 3):</strong> ECPSS</li>
<li><strong>Column 4 (Key 4):</strong> EIFNU</li>
<li><strong>Column 5 (Key 5):</strong> STEAK</li>
<li><strong>Column 6 (Key 6):</strong> RROON</li>
</ol>
<p dir="auto"><strong>Final Ciphertext:</strong> AURIW EY SLE CPSS EIFN UST EAK RROON<br />
<em>(Spaces added for readability)</em></p>
<hr />
]]></description><link>https://community.secnto.com//post/8279</link><guid isPermaLink="true">https://community.secnto.com//post/8279</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Fri, 23 Jan 2026 13:51:39 GMT</pubDate></item><item><title><![CDATA[Reply to CS205 Assignment 3 Solution and Discussion on Thu, 23 Jan 2020 08:28:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aleem1990" aria-label="Profile: aleem1990">@<bdi>aleem1990</bdi></a>  Asignment NO 3 Hai ap k pass cs205</p>
]]></description><link>https://community.secnto.com//post/3060</link><guid isPermaLink="true">https://community.secnto.com//post/3060</guid><dc:creator><![CDATA[HD Coverage]]></dc:creator><pubDate>Thu, 23 Jan 2020 08:28:47 GMT</pubDate></item></channel></rss>