VB.NET Examples

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

VB.NET Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
PFX
RSA
S/MIME
SMTP
Socket
Spider
SSH
SSH Tunnel
SSH Key
SFTP
Tar Archive
Upload
XML
XMP
Zip Compression
Misc

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

Byte Array
VB.NET FTPS
System.IO

 

 

 

 

 

 

RSA Encrypting Symmetric Secret Key

Download Chilkat .NET for 4.0 Framework

Download Chilkat .NET for 64-bit 4.0 Framework (x64)

Download Chilkat .NET for 2.0 / 3.5 Framework

Download Chilkat .NET for 64-bit 2.0 / 3.5 Framework (x64)

Download Chilkat .NET for 1.0 / 1.1 Framework

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

Dim rsa As New Chilkat.Rsa()

Dim success As Boolean
success = rsa.UnlockComponent("Anything for 30-day trial")
If (success <> true) Then
    MsgBox("RSA component unlock failed")
    Exit Sub
End If


Dim crypt As New Chilkat.Crypt2()

success = crypt.UnlockComponent("Anything for 30-day trial")
If (success <> true) Then
    MsgBox("Crypt component unlock failed")
    Exit Sub
End If


'  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.
Dim xmlKey As String
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.CryptAlgorithm = "aes"
crypt.CipherMode = "cbc"
crypt.KeyLength = 128

'  Generate a 128-bit secret key from a passphrase and return it as a hex string.
Dim secretKey As String
secretKey = crypt.GenEncodedSecretKey("secret","hex")
TextBox1.Text = TextBox1.Text & "Unencrypted Key: " _
     & secretKey & vbCrLf

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

'  RSA encrypt the secret key and return as a hex string:
rsa.EncodingMode = "hex"
Dim bUsePrivateKey As Boolean
bUsePrivateKey = false
Dim encryptedKey As String
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.EncodingMode = "base64"
Dim encryptedText As String
encryptedText = crypt.EncryptStringENC("Hello World!")

'  Show our encrypted key and encrypted text:
TextBox1.Text = TextBox1.Text & "Encrypted Key: " _
     & encryptedKey & vbCrLf
TextBox1.Text = TextBox1.Text & "Encrypted Text: " _
     & encryptedText & vbCrLf

'  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
Dim decryptedKey As String
decryptedKey = rsa.DecryptStringENC(encryptedKey,bUsePrivateKey)
TextBox1.Text = TextBox1.Text & "Decrypted Key: " _
     & decryptedKey & vbCrLf

'  Set our crypt object's properties and secret key:
Dim crypt2 As New Chilkat.Crypt2()
crypt2.CryptAlgorithm = "aes"
crypt2.CipherMode = "cbc"
crypt2.KeyLength = 128
crypt2.EncodingMode = "base64"
crypt2.SetEncodedKey(decryptedKey,"hex")

'  Decrypt the message:
Dim decryptedText As String
decryptedText = crypt2.DecryptStringENC(encryptedText)
TextBox1.Text = TextBox1.Text & "Decrypted Text: " _
     & decryptedText & vbCrLf
 

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

Mail Component · XML Parser