Skip to content

Instantly share code, notes, and snippets.

View DrinkyBird's full-sized avatar
🤔
afhafhafhas

Sean DrinkyBird

🤔
afhafhafhas
View GitHub Profile
@premnirmal
premnirmal / XORCrypt.java
Created September 26, 2014 02:03
Simple yet effective XOR encryption
import java.io.*;
import java.util.*;
/**
* @author Prem Nirmal
*/
public class XORCrypt {
static String value = "SampleStringToBeEncrypted";
static String keyval = "thisIsAKey";