Skip to content

Instantly share code, notes, and snippets.

View Peiffap's full-sized avatar
🔥
Focusing

Gilles Peiffer Peiffap

🔥
Focusing
View GitHub Profile
@Peiffap
Peiffap / caesar_cipher.java
Last active January 26, 2017 13:29
My personal implementations of some common cryptography algorithms
/**
* Created by admin on 25/01/17.
* Reads input from a file, creates a random Caesar cipher encryption key, and writes the ciphered output
* to a new file.
*/
import java.util.*;
import java.io.*;
public class Caesar {