Posts
Showing posts with the label Cryptography
Concept of programming Language by Carlo Ghezzi, Politecnico di Milano. Mehdi Jazayeri,
- Get link
- X
- Other Apps
Caesar Cipher Encription & Decription
- Get link
- X
- Other Apps
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...