Posts

Showing posts with the label Cryptography

RSA Cipher

Image

PLAY FAIR Cipher

Image

Concept of programming Language by Carlo Ghezzi, Politecnico di Milano. Mehdi Jazayeri,

Concept of Programming Language

Caesar Cipher Encription & Decription

Image
Can easily hide your text using this type of encription method more : wiki /* Encripting Part*/ public class Caserchiper{         public void Encripter(String S, int j){             for(int i=0; i<S.length(); i++){         // get the paticular Character on the String         char C = S.charAt(i);         // Casting the value to integer         int value = (int)C;         // adding some intger         int encrpt = value + j;         // casting the encripted value to Character         char encChar = (char)encrpt;         System.out.print(encChar);     }     System.out.println();     } } /*Decr...