DES algorithm : DES « Security « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Security » DESScreenshots 
DES algorithm
 

// DesCipher - the DES encryption method
//
// The meat of this code is by Dave Zimmerman <dzimm@widget.com>, and is:
//
// Copyright (c) 1996 Widget Workshop, Inc. All Rights Reserved.
//
// Permission to use, copy, modify, and distribute this software
// and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and
// without fee is hereby granted, provided that this copyright notice is kept
// intact.
//
// WIDGET WORKSHOP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY
// OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE, OR NON-INFRINGEMENT. WIDGET WORKSHOP SHALL NOT BE LIABLE
// FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
// DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
//
// THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR RESALE AS ON-LINE
// CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE
// PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT
// NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
// SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
// SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
// PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  WIDGET WORKSHOP
// SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR
// HIGH RISK ACTIVITIES.
//
//
// The rest is:
//
// Copyright (C) 1996 by Jef Poskanzer <jef@acme.com>.  All rights reserved.
//
// Copyright (C) 1996 by Wolfgang Platzer
// email: wplatzer@iaik.tu-graz.ac.at
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
//


import java.io.*;

/**
 * This code is derived from the above source
 * JCIFS API
 * Norbert Hranitzky
 *
 * <p>and modified again by Michael B. Allen
 */

public class DES   {


    private int[] encryptKeys = new int[32];
    private int[] decryptKeys = new int[32];

    private int[] tempInts = new int[2];


    public DES( ) {

    }

    // Constructor, byte-array key.
    public DESbyte[] key )    {
        ifkey.length == ) {
            byte[] key8 = new byte[8];
            makeSMBKeykey, key8 );
            setKeykey8 );
        else {
            setKeykey );
        }
    }


    public static void makeSMBKey(byte[] key7, byte[] key8) {

        int i;

        key8[0(byte) ( ( key7[0>> 10xff);
        key8[1(byte)(( ((key7[00x01<< 6(((key7[10xff)>>20xff)) 0xff );
        key8[2(byte)(( ((key7[10x03<< 5(((key7[20xff)>>30xff)) 0xff );
        key8[3(byte)(( ((key7[20x07<< 4(((key7[30xff)>>40xff)) 0xff );
        key8[4(byte)(( ((key7[30x0F<< 3(((key7[40xff)>>50xff)) 0xff );
        key8[5(byte)(( ((key7[40x1F<< 2(((key7[50xff)>>60xff)) 0xff );
        key8[6(byte)(( ((key7[50x3F<< 1(((key7[60xff)>>70xff)) 0xff );
        key8[7(byte)(key7[60x7F);
        for (i=0;i<8;i++) {
            key8[i(byte)( key8[i<< 1);
        }
    }

    /// Set the key.
    public void setKeybyte[] key ) {

        // CHECK PAROTY TBD
        deskeykey, true, encryptKeys );
        deskeykey, false, decryptKeys );
    }

    // Turn an 8-byte key into internal keys.
    private void deskeybyte[] keyBlock, boolean encrypting, int[] KnL ) {

        int i, j, l, m, n;
        int[] pc1m = new int[56];
        int[] pcr  = new int[56];
        int[] kn   = new int[32];

        for j = 0; j < 56; ++j )  {
            l       = pc1[j];
            m       = l & 07;
            pc1m[j( (keyBlock[l >>> 3& bytebit[m]) != )10;
        }

        for i = 0; i < 16; ++i ) {

            if encrypting )
                m = i << 1;
            else
                m = (15-i<< 1;
            n = m+1;
            kn[m= kn[n0;
            for j = 0; j < 28; ++j ) {
                l = j+totrot[i];
                if l < 28 )
                    pcr[j= pc1m[l];
                else
                    pcr[j= pc1m[l-28];
            }
            for j=28; j < 56; ++j ) {
                l = j+totrot[i];
                if l < 56 )
                    pcr[j= pc1m[l];
                else
                    pcr[j= pc1m[l-28];
            }
            for j = 0; j < 24; ++j ) {
                if pcr[pc2[j]] != )
                    kn[m|= bigbyte[j];
                if pcr[pc2[j+24]] != )
                    kn[n|= bigbyte[j];
            }
        }
        cookeykn, KnL );
    }

    private void cookeyint[] raw, int KnL[] )     {
        int raw0, raw1;
        int rawi, KnLi;
        int i;

        for i = 0, rawi = 0, KnLi = 0; i < 16; ++i )   {
            raw0 = raw[rawi++];
            raw1 = raw[rawi++];
            KnL[KnLi]  (raw0 & 0x00fc0000<<   6;
            KnL[KnLi|= (raw0 & 0x00000fc0<<  10;
            KnL[KnLi|= (raw1 & 0x00fc0000>>> 10;
            KnL[KnLi|= (raw1 & 0x00000fc0>>>  6;
            ++KnLi;
            KnL[KnLi]  (raw0 & 0x0003f000<<  12;
            KnL[KnLi|= (raw0 & 0x0000003f<<  16;
            KnL[KnLi|= (raw1 & 0x0003f000>>>  4;
            KnL[KnLi|= (raw1 & 0x0000003f);
            ++KnLi;
        }
    }


    /// Encrypt a block of eight bytes.
    private void encryptbyte[] clearText, int clearOff, byte[] cipherText, int cipherOff ) {

        squashBytesToIntsclearText, clearOff, tempInts, 0);
        destempInts, tempInts, encryptKeys );
        spreadIntsToBytestempInts, 0, cipherText, cipherOff, );
    }

    /// Decrypt a block of eight bytes.
    private void decryptbyte[] cipherText, int cipherOff, byte[] clearText, int clearOff ) {

        squashBytesToIntscipherText, cipherOff, tempInts, 0);
        destempInts, tempInts, decryptKeys );
        spreadIntsToBytestempInts, 0, clearText, clearOff, );
    }

    // The DES function.
    private void desint[] inInts, int[] outInts, int[] keys ) {

        int fval, work, right, leftt;
        int round;
        int keysi = 0;

        leftt = inInts[0];
        right = inInts[1];

        work   = ((leftt >>>  4^ right0x0f0f0f0f;
        right ^= work;
        leftt ^= (work << 4);

        work   = ((leftt >>> 16^ right0x0000ffff;
        right ^= work;
        leftt ^= (work << 16);

        work   = ((right >>>  2^ leftt0x33333333;
        leftt ^= work;
        right ^= (work << 2);

        work   = ((right >>>  8^ leftt0x00ff00ff;
        leftt ^= work;
        right ^= (work << 8);
        right  = (right << 1((right >>> 311);

        work   = (leftt ^ right0xaaaaaaaa;
        leftt ^= work;
        right ^= work;
        leftt  = (leftt << 1((leftt >>> 311);

        for round = 0; round < 8; ++round )  {
            work   = (right << 28(right >>> 4);
            work  ^= keys[keysi++];
            fval   = SP7work         & 0x0000003f ];
            fval  |= SP5[(work >>>  80x0000003f ];
            fval  |= SP3[(work >>> 160x0000003f ];
            fval  |= SP1[(work >>> 240x0000003f ];
            work   = right ^ keys[keysi++];
            fval  |= SP8work         & 0x0000003f ];
            fval  |= SP6[(work >>>  80x0000003f ];
            fval  |= SP4[(work >>> 160x0000003f ];
            fval  |= SP2[(work >>> 240x0000003f ];
            leftt ^= fval;
            work   = (leftt << 28(leftt >>> 4);
            work  ^= keys[keysi++];
            fval   = SP7work         & 0x0000003f ];
            fval  |= SP5[(work >>>  80x0000003f ];
            fval  |= SP3[(work >>> 160x0000003f ];
            fval  |= SP1[(work >>> 240x0000003f ];
            work   = leftt ^ keys[keysi++];
            fval  |= SP8work         & 0x0000003f ];
            fval  |= SP6[(work >>>  80x0000003f ];
            fval  |= SP4[(work >>> 160x0000003f ];
            fval  |= SP2[(work >>> 240x0000003f ];
            right ^= fval;
        }

        right  = (right << 31(right >>> 1);
        work   = (leftt ^ right0xaaaaaaaa;
        leftt ^= work;
        right ^= work;
        leftt  = (leftt << 31(leftt >>> 1);
        work   = ((leftt >>>  8^ right0x00ff00ff;
        right ^= work;
        leftt ^= (work << 8);
        work   = ((leftt >>>  2^ right0x33333333;
        right ^= work;
        leftt ^= (work << 2);
        work   = ((right >>> 16^ leftt0x0000ffff;
        leftt ^= work;
        right ^= (work << 16);
        work   = ((right >>>  4^ leftt0x0f0f0f0f;
        leftt ^= work;
        right ^= (work << 4);
        outInts[0= right;
        outInts[1= leftt;
    }


    /// Encrypt a block of bytes.
    public void encryptbyte[] clearText, byte[] cipherText )  {
        encryptclearText, 0, cipherText, );
    }

    /// Decrypt a block of bytes.
    public void decryptbyte[] cipherText, byte[] clearText ) {

        decryptcipherText, 0, clearText, );
    }

    /**
     * encrypts an array where the length must be a multiple of 8
     */
    public byte[] encrypt(byte[] clearText) {

        int length = clearText.length;

        if (length % != 0) {
            System.out.println("Array must be a multiple of 8");
            return null;
        }

        byte[] cipherText = new byte[length];
        int count = length / 8;

        for (int i=0; i<count; i++)
            encrypt(clearText, i*8, cipherText, i*8);

        return cipherText;
    }

    /**
     * decrypts an array where the length must be a multiple of 8
     */
    public byte[] decrypt(byte[] cipherText) {

        int length = cipherText.length;

        if (length % != 0) {
            System.out.println("Array must be a multiple of 8");
            return null;
        }

        byte[] clearText = new byte[length];
        int count = length / 8;

        for (int i=0; i<count; i++)
            encrypt(cipherText, i*8, clearText, i*8);

        return clearText;
    }


    // Tables, permutations, S-boxes, etc.

    private static byte[] bytebit = {
        (byte)0x80(byte)0x40(byte)0x20(byte)0x10,
        (byte)0x08(byte)0x04(byte)0x02(byte)0x01
    };
    private static int[] bigbyte = {
        0x8000000x4000000x2000000x100000,
        0x0800000x0400000x0200000x010000,
        0x0080000x0040000x0020000x001000,
        0x0008000x0004000x0002000x000100,
        0x0000800x0000400x0000200x000010,
        0x0000080x0000040x0000020x000001
    };
    private static byte[] pc1 = {
        (byte)56(byte)48(byte)40(byte)32(byte)24(byte)16(byte8,
        (byte0(byte)57(byte)49(byte)41(byte)33(byte)25(byte)17,
        (byte9(byte1(byte)58(byte)50(byte)42(byte)34(byte)26,
        (byte)18(byte)10(byte2(byte)59(byte)51(byte)43(byte)35,
        (byte)62(byte)54(byte)46(byte)38(byte)30(byte)22(byte)14,
        (byte6(byte)61(byte)53(byte)45(byte)37(byte)29(byte)21,
        (byte)13(byte5(byte)60(byte)52(byte)44(byte)36(byte)28,
        (byte)20(byte)12(byte4(byte)27(byte)19(byte)11(byte)3
    };
    private static int[] totrot = {
        124681012141517192123252728
    };

    private static byte[] pc2 = {
        (byte)13(byte)16(byte)10(byte)23(byte0(byte4,
        (byte2(byte)27(byte)14(byte5(byte)20(byte9,
        (byte)22(byte)18(byte)11(byte)(byte)25(byte7,
        (byte)15(byte6(byte)26(byte)19(byte)12(byte1,
        (byte)40(byte)51(byte)30(byte)36(byte)46(byte)54,
        (byte)29(byte)39(byte)50(byte)44(byte)32(byte)47,
        (byte)43(byte)48(byte)38(byte)55(byte)33(byte)52,
        (byte)45(byte)41(byte)49(byte)35(byte)28(byte)31,
    };

    private static int[] SP1 = {
        0x010104000x000000000x000100000x01010404,
        0x010100040x000104040x000000040x00010000,
        0x000004000x010104000x010104040x00000400,
        0x010004040x010100040x010000000x00000004,
        0x000004040x010004000x010004000x00010400,
        0x000104000x010100000x010100000x01000404,
        0x000100040x010000040x010000040x00010004,
        0x000000000x000004040x000104040x01000000,
        0x000100000x010104040x000000040x01010000,
        0x010104000x010000000x010000000x00000400,
        0x010100040x000100000x000104000x01000004,
        0x000004000x000000040x010004040x00010404,
        0x010104040x000100040x010100000x01000404,
        0x010000040x000004040x000104040x01010400,
        0x000004040x010004000x010004000x00000000,
        0x000100040x000104000x000000000x01010004
    };
    private static int[] SP2 = {
        0x801080200x800080000x000080000x00108020,
        0x001000000x000000200x801000200x80008020,
        0x800000200x801080200x801080000x80000000,
        0x800080000x001000000x000000200x80100020,
        0x001080000x001000200x800080200x00000000,
        0x800000000x000080000x001080200x80100000,
        0x001000200x800000200x000000000x00108000,
        0x000080200x801080000x801000000x00008020,
        0x000000000x001080200x801000200x00100000,
        0x800080200x801000000x801080000x00008000,
        0x801000000x800080000x000000200x80108020,
        0x001080200x000000200x000080000x80000000,
        0x000080200x801080000x001000000x80000020,
        0x001000200x800080200x800000200x00100020,
        0x001080000x000000000x800080000x00008020,
        0x800000000x801000200x801080200x00108000
    };
    private static int[] SP3 = {
        0x000002080x080202000x000000000x08020008,
        0x080002000x000000000x000202080x08000200,
        0x000200080x080000080x080000080x00020000,
        0x080202080x000200080x080200000x00000208,
        0x080000000x000000080x080202000x00000200,
        0x000202000x080200000x080200080x00020208,
        0x080002080x000202000x000200000x08000208,
        0x000000080x080202080x000002000x08000000,
        0x080202000x080000000x000200080x00000208,
        0x000200000x080202000x080002000x00000000,
        0x000002000x000200080x080202080x08000200,
        0x080000080x000002000x000000000x08020008,
        0x080002080x000200000x080000000x08020208,
        0x000000080x000202080x000202000x08000008,
        0x080200000x080002080x000002080x08020000,
        0x000202080x000000080x080200080x00020200
    };
    private static int[] SP4 = {
        0x008020010x000020810x000020810x00000080,
        0x008020800x008000810x008000010x00002001,
        0x000000000x008020000x008020000x00802081,
        0x000000810x000000000x008000800x00800001,
        0x000000010x000020000x008000000x00802001,
        0x000000800x008000000x000020010x00002080,
        0x008000810x000000010x000020800x00800080,
        0x000020000x008020800x008020810x00000081,
        0x008000800x008000010x008020000x00802081,
        0x000000810x000000000x000000000x00802000,
        0x000020800x008000800x008000810x00000001,
        0x008020010x000020810x000020810x00000080,
        0x008020810x000000810x000000010x00002000,
        0x008000010x000020010x008020800x00800081,
        0x000020010x000020800x008000000x00802001,
        0x000000800x008000000x000020000x00802080
    };
    private static int[] SP5 = {
        0x000001000x020801000x020800000x42000100,
        0x000800000x000001000x400000000x02080000,
        0x400801000x000800000x020001000x40080100,
        0x420001000x420800000x000801000x40000000,
        0x020000000x400800000x400800000x00000000,
        0x400001000x420801000x420801000x02000100,
        0x420800000x400001000x000000000x42000000,
        0x020801000x020000000x420000000x00080100,
        0x000800000x420001000x000001000x02000000,
        0x400000000x020800000x420001000x40080100,
        0x020001000x400000000x420800000x02080100,
        0x400801000x000001000x020000000x42080000,
        0x420801000x000801000x420000000x42080100,
        0x020800000x000000000x400800000x42000000,
        0x000801000x020001000x400001000x00080000,
        0x000000000x400800000x020801000x40000100
    };
    private static int[] SP6 = {
        0x200000100x204000000x000040000x20404010,
        0x204000000x000000100x204040100x00400000,
        0x200040000x004040100x004000000x20000010,
        0x004000100x200040000x200000000x00004010,
        0x000000000x004000100x200040100x00004000,
        0x004040000x200040100x000000100x20400010,
        0x204000100x000000000x004040100x20404000,
        0x000040100x004040000x204040000x20000000,
        0x200040000x000000100x204000100x00404000,
        0x204040100x004000000x000040100x20000010,
        0x004000000x200040000x200000000x00004010,
        0x200000100x204040100x004040000x20400000,
        0x004040100x204040000x000000000x20400010,
        0x000000100x000040000x204000000x00404010,
        0x000040000x004000100x200040100x00000000,
        0x204040000x200000000x004000100x20004010
    };
    private static int[] SP7 = {
        0x002000000x042000020x040008020x00000000,
        0x000008000x040008020x002008020x04200800,
        0x042008020x002000000x000000000x04000002,
        0x000000020x040000000x042000020x00000802,
        0x040008000x002008020x002000020x04000800,
        0x040000020x042000000x042008000x00200002,
        0x042000000x000008000x000008020x04200802,
        0x002008000x000000020x040000000x00200800,
        0x040000000x002008000x002000000x04000802,
        0x040008020x042000020x042000020x00000002,
        0x002000020x040000000x040008000x00200000,
        0x042008000x000008020x002008020x04200800,
        0x000008020x040000020x042008020x04200000,
        0x002008000x000000000x000000020x04200802,
        0x000000000x002008020x042000000x00000800,
        0x040000020x040008000x000008000x00200002
    };
    private static int[] SP8 = {
        0x100010400x000010000x000400000x10041040,
        0x100000000x100010400x000000400x10000000,
        0x000400400x100400000x100410400x00041000,
        0x100410000x000410400x000010000x00000040,
        0x100400000x100000400x100010000x00001040,
        0x000410000x000400400x100400400x10041000,
        0x000010400x000000000x000000000x10040040,
        0x100000400x100010000x000410400x00040000,
        0x000410400x000400000x100410000x00001000,
        0x000000400x100400400x000010000x00041040,
        0x100010000x000000400x100000400x10040000,
        0x100400400x100000000x000400000x10001040,
        0x000000000x100410400x000400400x10000040,
        0x100400000x100010000x100010400x00000000,
        0x100410400x000410000x000410000x00001040,
        0x000010400x000400400x100000000x10041000
    };


 /// Squash bytes down to ints.
    public static void squashBytesToIntsbyte[] inBytes, int inOff, int[] outInts,
                                           int outOff, int intLen ) {

        for int i = 0; i < intLen; ++i )
            outInts[outOff + i=
                ( ( inBytes[inOff + i * 4    0xff << 24 |
                ( ( inBytes[inOff + i * 10xff << 16 |
                ( ( inBytes[inOff + i * 20xff <<  |
                 inBytes[inOff + i * 30xff );
    }

    /// Spread ints into bytes.
    public static void spreadIntsToBytesint[] inInts, int inOff, byte[] outBytes,
                                         int outOff, int intLen ) {

        for int i = 0; i < intLen; ++i ) {

            outBytes[outOff + i * 4    (byte) ( inInts[inOff + i>>> 24 );
            outBytes[outOff + i * 1(byte) ( inInts[inOff + i>>> 16 );
            outBytes[outOff + i * 2(byte) ( inInts[inOff + i>>>  );
            outBytes[outOff + i * 3(byte)   inInts[inOff + i];
        }
    }
}

   
  
Related examples in the same category
1. DES Crypter and Decrypter
2. Decrypt an object with DES
3. Encrypt an object with DES
4. Encrypting a String with DES
5. Encrypting an Object with DES
6. Encrypting a File or Stream with DES
7. Triple DES
8. Encrypting with DES Using a Pass Phrase
9. DES Engine
10. Des Encrypter
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.