Let's Learn Computing
Pages
(Move to ...)
Home
Revision Presentations
▼
Showing posts with label
Cryptography
.
Show all posts
Showing posts with label
Cryptography
.
Show all posts
Wednesday, 16 July 2014
Is hacking always bad?
›
Initially, Hacking was used to describe an activity done as a hobby, usually in a sophisticated manner. It basically had no relations with...
1 comment:
Friday, 9 May 2014
Java program for Hill Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class HillCipher { //the 3x3 key matrix for 3 charact...
Java program for Vigenere Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Vigenere { public static String key = "ENIG...
Java program for Playfair Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class PlayFair { //the key matrix public static c...
1 comment:
Java program for Mono-alphabetic Substitution Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Monoalphabetic { public static String key = ...
Java program for Caesar Cipher
›
import javax.swing.JOptionPane; /** * * @author dixit bhatta */ public class Ceaser { /** * @param args the command li...
›
Home
View web version