Java Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
SFTP
Signatures
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
Upload
XML
XMP
Zip

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

Encrypting/decrypting a data stream.

This example demonstrates how to encrypt (using a symmetric encryption algorithm such as AES, Blowfish, RC2, 3DES, etc) a large amount of data. The data is passed in chunks to one of the encrypt methods: EncryptBytes, EncryptString, EncryptBytesENC, or EncryptStringENC. (The method name indicates the type of input (string or byte array) and the return type (encoded string or byte array). The FirstChunk and LastChunk properties are used to indicate whether a chunk is the first, middle, or last in a stream to be encrypted. By default, both FirstChunk and LastChunk equal true -- meaning that the data passed is the entire amount.

Note: You may feed the data in chunks that are smaller than the block size of the encryption algorithm (AES and Twofish have a block size of 16 bytes. DES, 3DES, Blowfish, and RC2 have a block size of 8 bytes. ARC4 is a streaming encryption algorithm and does not have a block size, but technically you can think of it as having a block size of 1 byte.) The Chilkat Crypt component will buffer the data as required. If an amount of data smaller than the block size is passed such that the entire amount is buffered, then an empty string is returned. The buffered data will be added to the data passed in subsequent calls. When the final data chunk is passed, it is padded to the encryption algorithm's block size (according to the PaddingScheme property) and the encryption is complete. Decrypting in chunks is identical to encrypting in chunks. Note: This example uses new features available in the pre-release, or any official new version released after 17-October-2007.

 Chilkat Java Library Downloads for Windows, Linux, and MAC OS X

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    CkCrypt2 crypt = new CkCrypt2();

    boolean success;
    success = crypt.UnlockComponent("Anything for 30-day trial");
    if (success != true) {
        System.out.println("Crypt component unlock failed");
        return;
    }

    //  This example works with the following algorithms supported
    //  by Chilkat: AES, Blowfish, Twofish, DES, 3DES, RC2, ARC4,
    //  and potentially others implemented after the time this
    //  example was written.
    crypt.put_CryptAlgorithm("aes");
    crypt.put_CipherMode("cbc");
    crypt.put_KeyLength(128);

    crypt.SetEncodedKey("000102030405060708090A0B0C0D0E0F","hex");

    crypt.put_EncodingMode("hex");
    String txt1;
    txt1 = "The quick brown fox jumped over the lazy dog." + "\n";
    String txt2;
    txt2 = "-" + "\n";
    String txt3;
    txt3 = "Done." + "\n";

    //  Encrypt the 1st chunk:
    //  (don't worry about feeding the data to the encryptor in
    //  exact multiples of the encryption algorithm's block size.
    //  The Chilkat Crypt component buffers the data internally.)
    crypt.put_FirstChunk(true);
    crypt.put_LastChunk(false);
    String encryptedText;
    encryptedText = crypt.encryptStringENC(txt1);

    //  Encrypt the 2nd chunk
    crypt.put_FirstChunk(false);
    crypt.put_LastChunk(false);
    encryptedText = encryptedText + crypt.encryptStringENC(txt2);

    //  Now encrypt N more chunks...
    //  Remember -- we're doing this in CBC mode, so each call
    //  to the encrypt method depends on the state from previous
    //  calls...
    crypt.put_FirstChunk(false);
    crypt.put_LastChunk(false);
    int i;
    for (i = 0; i <= 5; i++) {
        encryptedText = encryptedText + crypt.encryptStringENC(txt1);
        encryptedText = encryptedText + crypt.encryptStringENC(txt2);
    }

    //  Now encrypt the last chunk:
    crypt.put_FirstChunk(false);
    crypt.put_LastChunk(true);
    encryptedText = encryptedText + crypt.encryptStringENC(txt3);

    System.out.println(encryptedText);

    //  Now decrypt in one call.
    //  (The data we're decrypting is both the first AND last chunk.)
    crypt.put_FirstChunk(true);
    crypt.put_LastChunk(true);
    String decryptedText;
    decryptedText = crypt.decryptStringENC(encryptedText);

    System.out.println(decryptedText);

    //  Note: You may decrypt in N chunks by setting the FirstChunk
    //  and LastChunk properties prior to calling the Decrypt* methods.

  }
}

 

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.