}
System.out.println("]");
System.out.println("Encrypted bytes in HEX :");
System.out.println(new String(Hex.encode(tempEncrypt)));
System.out.println("**Sample 2 : Decryption**");
tempDecrypt = symmetricKeyCipher.decrypt(tempEncrypt);
System.out.println("Decrypted bytes : ");
System.out.print("[");
for (i = 0; i < tempDecrypt.length; i++) {
System.out.print(tempDecrypt[i]);
System.out.print(";");