SlideShare a Scribd company logo
//Author: Neil VonHoltum 
import java.util.Base64; 
public class Decrypt { 
public static void main(String[] args) { 
byte[] messagebytes = Base64.getDecoder().decode  
("DUgdHQwPEQZdSUVTTFEIHA0OGFNZDkkGBgAaCg8PGglTVRROQgwfAgo" +
"LBQoIU1kOSQAPChkdGhtITE5VCQcLCh4TCwcKAwlTWQ5JBAoEHwoYDQIJG" +
"gEJTl9JSwMBAgcMBxERCUJFTh4XDQwBGx9TVRROQhoNEApJRE9LEhpBS" +
"UVTTFEYBwZOSwk="),  
keybytes = "vonholtu.neil".getBytes(); 
int i = 0; 
while(i < 130){ 
for(int t = 0; t < 13; t++, i++){ 
messagebytes[i] = (byte)(messagebytes[i] ^ keybytes[t]); 
} 
} 
for(int t = 0; i < 137; i++, t++){ 
messagebytes[i] = (byte)(messagebytes[i] ^ keybytes[t]); 
} 
System.out.println(new String(messagebytes)); 
} 
} 

More Related Content

PDF
MongoUK - PHP Development
PPTX
Beyond Golden Containers: Complementing Docker with Puppet
PDF
Complementing Docker with Puppet
PDF
File-I/O -- ist doch ganz einfach, oder?
PDF
Mac OS X Lion で作る WordPress local 環境
PDF
F2e security
KEY
MongoDB: How it Works
PPTX
Top 28 programming language with hello world for artificial intelligence
MongoUK - PHP Development
Beyond Golden Containers: Complementing Docker with Puppet
Complementing Docker with Puppet
File-I/O -- ist doch ganz einfach, oder?
Mac OS X Lion で作る WordPress local 環境
F2e security
MongoDB: How it Works
Top 28 programming language with hello world for artificial intelligence

What's hot (18)

PDF
Ruby on Windows (uru/RubyInstaller/Devkit)
PPT
Full-Stack JavaScript with Node.js
PDF
The Windows 10 tips you wished you knew last week
TXT
Tipo virus espia con esto aprenderan a espiar a personas etc jeropas de mrd :v
PPTX
Php Basics part 1
PDF
Git installation
PDF
Chrome拡張開発者のためのFirefox拡張開発
PDF
Redis, a 2 minutes introduction
PDF
Es part 2 pdf no build
PDF
Couchdb w Ruby'm
PDF
高性能かつスケールアウト可能なHPCクラウド AIST Super Green Cloud
PDF
杨卫华:微博cache设计浅谈
TXT
Simple php backdoor_by_dk
PDF
PuppetCamp SEA 1 - Version Control with Puppet
KEY
PostgreSQLからMongoDBへ
PDF
React PHP: the NodeJS challenger
PDF
Getting Started with MongoDB
Ruby on Windows (uru/RubyInstaller/Devkit)
Full-Stack JavaScript with Node.js
The Windows 10 tips you wished you knew last week
Tipo virus espia con esto aprenderan a espiar a personas etc jeropas de mrd :v
Php Basics part 1
Git installation
Chrome拡張開発者のためのFirefox拡張開発
Redis, a 2 minutes introduction
Es part 2 pdf no build
Couchdb w Ruby'm
高性能かつスケールアウト可能なHPCクラウド AIST Super Green Cloud
杨卫华:微博cache设计浅谈
Simple php backdoor_by_dk
PuppetCamp SEA 1 - Version Control with Puppet
PostgreSQLからMongoDBへ
React PHP: the NodeJS challenger
Getting Started with MongoDB
Ad

More from Neil VonHoltum (6)

PDF
Zombit Pandemic
PDF
Minion's Bored Game
PDF
Mad Science Quarterly
PDF
Grid Zero
PDF
Dont Mind The Map
PDF
Breeding Like Rabbits
Zombit Pandemic
Minion's Bored Game
Mad Science Quarterly
Grid Zero
Dont Mind The Map
Breeding Like Rabbits
Ad

Message Decrypt