Java Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML-to-XML
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...
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

RSA Encrypting Symmetric Secret Key

The RSA encryption algorithm is computationally expensive. It is not the best choice for encrypting large amounts of data. Symmetric encryption algorithms such as AES (i.e. Rijndael) or Blowfish are much more efficient. A typical application scenario is that you want to send encrypted messages to a partner, but you don't want to send the symmetric key unprotected. A solution is to generate a public/private RSA key pair and provide your partner with the public key (in advance). You may then encrypt the symmetric algorithm's key using the RSA private key. Next, encrypt the message using the symmetric algorithm, and send your partner both the encrypted key and encrypted message. Your partner decrypts by first RSA decrypting the key, and then using it to decrypt the message. One typical use of the RSA algorithm is to encrypt a symmetric encryption algorithm key so that it can be sent to

Download Chilkat Java Library

Download Chilkat Java x64 Library

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[])
  {
    CkRsa rsa = new CkRsa();

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

    CkCrypt2 crypt = new CkCrypt2();

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

    //  Load a public/private key pair from a .snk key file.
    //  Assume you have already provided your partner with
    //  the public key part of the key pair.
    String xmlKey;
    xmlKey = rsa.snkToXml("chilkat2.snk");

    //  Alternatively, you may generate a public/private key pair
    //  by calling GenerateKey (as shown in the commented-out line
    //  below).  If you do this, comment out the lines that call
    //  ImportPrivateKey and ImportPublicKey.
    // success = rsa.GenerateKey(2048);

    //  Import the private key into the RSA instance.
    rsa.ImportPrivateKey(xmlKey);

    //  Our message data will be encrypted using 128-bit AES
    //  encryption, using CBC (cipher-block chaining).
    crypt.put_CryptAlgorithm("aes");
    crypt.put_CipherMode("cbc");
    crypt.put_KeyLength(128);

    //  Generate a 128-bit secret key from a passphrase and return it as a hex string.
    String secretKey;
    secretKey = crypt.genEncodedSecretKey("secret","hex");
    System.out.println("Unencrypted Key: " + secretKey);

    //  Use the key we generated:
    crypt.SetEncodedKey(secretKey,"hex");

    //  RSA encrypt the secret key and return as a hex string:
    rsa.put_EncodingMode("hex");
    boolean bUsePrivateKey;
    bUsePrivateKey = false;
    String encryptedKey;
    encryptedKey = rsa.encryptStringENC(secretKey,bUsePrivateKey);

    //  Symmetric encrypt a message.  For this example the message
    //  is very short, but typically this is where a large amount
    //  of data may be encrypted.
    crypt.put_EncodingMode("base64");
    String encryptedText;
    encryptedText = crypt.encryptStringENC("Hello World!");

    //  Show our encrypted key and encrypted text:
    System.out.println("Encrypted Key: " + encryptedKey);
    System.out.println("Encrypted Text: " + encryptedText);

    //  Assume we sent these strings to our partner...

    //  Here's what we do at the partner end:
    rsa.ImportPublicKey(xmlKey);

    //  First, decrypt the encryptedKey:
    bUsePrivateKey = true;
    String decryptedKey;
    decryptedKey = rsa.decryptStringENC(encryptedKey,bUsePrivateKey);
    System.out.println("Decrypted Key: " + decryptedKey);

    //  Set our crypt object's properties and secret key:
    CkCrypt2 crypt2 = new CkCrypt2();
    crypt2.put_CryptAlgorithm("aes");
    crypt2.put_CipherMode("cbc");
    crypt2.put_KeyLength(128);
    crypt2.put_EncodingMode("base64");
    crypt2.SetEncodedKey(decryptedKey,"hex");

    //  Decrypt the message:
    String decryptedText;
    decryptedText = crypt2.decryptStringENC(encryptedText);
    System.out.println("Decrypted Text: " + decryptedText);
  }
}

 

Need a specific example? Send a request to support@chilkatsoft.com

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