PHP Extension
PHP Extension
RSA Encrypting Symmetric Secret Key
See more RSA Examples
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 uses the decrypted symmetric key to decrypt the message content.Chilkat PHP Extension Downloads
<?php
include("chilkat.php");
$success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$rsa = new CkRsa();
// 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('qa_data/rsaKeys/test.snk');
if ($rsa->get_LastMethodSuccess() == false) {
print $rsa->lastErrorText() . "\n";
exit;
}
$pubKey = new CkPublicKey();
$success = $pubKey->LoadFromString($xmlKey);
if ($success == false) {
print $pubKey->lastErrorText() . "\n";
exit;
}
$rsa->UsePublicKey($pubKey);
// Our message data will be encrypted using 128-bit AES
// encryption, using CBC (cipher-block chaining).
$crypt = new CkCrypt2();
$crypt->put_CryptAlgorithm('aes');
$crypt->put_CipherMode('cbc');
$crypt->put_KeyLength(128);
// Generate 128-bit (16 bytes) secret key and return as a hex string.
$crypt->put_EncodingMode('hex');
$secretKey = $crypt->genRandomBytesENC(16);
print 'Unencrypted Key: ' . $secretKey . "\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 = false;
$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 . "\n";
print 'Encrypted Text: ' . $encryptedText . "\n";
// Assume we sent these strings to our partner...
// Here's what we do at the partner end:
$privKey = new CkPrivateKey();
$success = $privKey->LoadXml($xmlKey);
if ($success == false) {
print $privKey->lastErrorText() . "\n";
exit;
}
$rsa->UsePrivateKey($privKey);
// First, decrypt the encryptedKey:
$bUsePrivateKey = true;
$decryptedKey = $rsa->decryptStringENC($encryptedKey,$bUsePrivateKey);
print 'Decrypted Key: ' . $decryptedKey . "\n";
// Set our crypt object's properties and secret key:
$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:
$decryptedText = $crypt2->decryptStringENC($encryptedText);
print 'Decrypted Text: ' . $decryptedText . "\n";
?>