Encrypted in various languages
- Required Java 8 Higher
$ javac -encoding UTF8 CipherSample.java
$ java CipherSample
CAX/zDb/Vdu/063a7fE+qQ==
hello
- Required Ruby 2.0.0
$ ruby CipherSample.rb
"Original: hello"
"Encript : CAX/zDb/Vdu/063a7fE+qQ==\n"
"Decript : hello"
- Required PHP 5.1.6
$ php CipherSample.php
Original Data : hello
Encrypted Data : CAX/zDb/Vdu/063a7fE+qQ==
Decrypted Data : hello
- perl 5.8.8
- Crypt::ECB
- Crypt::Rijndael
$ perl CipherSample.pl
Plain text : hello
Cipher text : CAX/zDb/Vdu/063a7fE+qQ==
Decrypt text: hello