mirror of
https://github.com/KyleBanks/XOREncryption.git
synced 2023-08-10 21:13:15 +03:00
Added Groovy implementation
This commit is contained in:
19
Groovy/XOREncryption.groovy
Normal file
19
Groovy/XOREncryption.groovy
Normal file
@@ -0,0 +1,19 @@
|
||||
def encryptDecrypt(String input) {
|
||||
def key = ['K', 'C', 'Q'] //Can be any chars, and any length array
|
||||
def output = []
|
||||
|
||||
for(int i = 0; i < input.length(); i++) {
|
||||
int a = input.charAt(i) as int;
|
||||
int b = (key[i % key.size()] as char) as int
|
||||
output.add((a ^ b) as char)
|
||||
}
|
||||
|
||||
output.join("")
|
||||
}
|
||||
|
||||
|
||||
def encrypted = encryptDecrypt("kylewbanks.com")
|
||||
println("Encrypted:" + encrypted)
|
||||
|
||||
def decrypted = encryptDecrypt(encrypted)
|
||||
println("Decrypted:" + decrypted)
|
||||
Reference in New Issue
Block a user