Perl Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Perl Examples

Quick Start
Perl Unicode
Perl Byte Array
Perl Certs
Perl Email
Perl Encryption
Perl FTP
HTML-to-XML
Perl HTTP
Perl IMAP
Perl MHT
Perl MIME
Perl RSA
Perl S/MIME
Perl Signatures
Perl Socket
Perl Spider
Perl Tar
Perl Upload
Perl XML
Perl XMP
Perl Zip

More Examples...
String
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

 

 

 

 

 

 

 

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

Chilkat Module for Perl 5.8.*

Chilkat Module for Perl 5.10.*

use chilkat;

$rsa = new chilkat::CkRsa();

$success = $rsa->UnlockComponent("Anything for 30-day trial");
if ($success != 1) {
    print "RSA component unlock failed" . "\n";
    exit;
}

$crypt = new chilkat::CkCrypt2();
$success = $crypt->UnlockComponent("Anything for 30-day trial");
if ($success != 1) {
    print "Crypt component unlock failed" . "\n";
    exit;
}

#  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.
$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.
$secretKey = $crypt->genEncodedSecretKey("secret","hex");
print "Unencrypted Key: " . $secretKey . "\r\n";

#  Use the key we generated:
$crypt->SetEncodedKey($secretKey,"hex");

#  RSA encrypt the secret key and return as a hex string:
$rsa->put_EncodingMode("hex");
$bUsePrivateKey = 0;
$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");
$encryptedText = $crypt->encryptStringENC("Hello World!");

#  Show our encrypted key and encrypted text:
print "Encrypted Key: " . $encryptedKey . "\r\n";
print "Encrypted Text: " . $encryptedText . "\r\n";

#  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 = 1;
$decryptedKey = $rsa->decryptStringENC($encryptedKey,$bUsePrivateKey);
print "Decrypted Key: " . $decryptedKey . "\r\n";

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

#  Decrypt the message:
$decryptedText = $crypt2->decryptStringENC($encryptedText);
print "Decrypted Text: " . $decryptedText . "\r\n";
 

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

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