ajax-new-color version 1.0-2

Credit goes to John (http://red-star.nl/blog)

here is change logs:

version 1.0-2
(thanks goes to Jon)
1. added style on button
2. fixed IE related side bar bug

version 1.0
(thanks goes to John)

1. added cookies support for comment box
2. updated css files
3. added optional plugin support
4. gravatar support added
5. Fitness indicator support added

version 0.2
1. Fixed real link

Download link

Usually hosting issues donít arise with godaddy or even dotster. If you want your business opportunity at the internet to grow and burgeon, try a reliable name like anhosting.

TripleDES encryption/decryption example:

here is 3DES encryption/decryption example:

private final static ENC_TYPE = “TripleDES”;
// you can generate from InputStream too
SecretKey key = KeyGenerator.getInstance( ENC_TYPE ).generateKey();

// encrypt
Cipher eCipher = Cipher.getInstance( ENC_TYPE );
eCipher.init( Cipher.ENCRYPT_MODE, key );

String plainText = “hello world”;
byte[] utf8 = plainText.getBytes( “UTF8″ );
byte[] encrypted = eCipher.doFinal( utf8 );
String base64Encoded = new BASE64Encoder().encode( encrypted );
out.println( “Encrypted text – ” + base64Encode );

// decrypt
Cipher dCipher = Cipher.getInstance( ENC_TYPE );
dCipher.init( Cipher.DECRYPT_MODE, key );
byte[] encData = new BASE64Decoder().decodeBuffer( base64Encoded );
byte[] decryptedUtf8 = dCipher.doFinal( encData );
String realText = new String( decryptedUtf8 );

out.println( “Decrypted text – ” + realText );

my tweets

 

December 2006
S S M T W T F
« Nov   Jan »
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Flickr Photos

@kamalapur over bridge

@kamalapur station

cox's bazaar trip oct 09

cox's bazaar trip oct 09

cast ur vote!

More Photos
Follow

Get every new post delivered to your Inbox.