Visual Basic Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB Examples

Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
String
Tar
Unicode
Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
SSH Key
SSH
SSH Tunnel
SFTP


VB Strings
VB Byte Array

Unreleased...
Bzip2
LZW
Bz2
Icon

 

 

 

 

 

 

 

Encrypt XML Subtree

Download Chilkat XML ActiveX

Encrypt an entire subtree within an XML document

Dim xml As New ChilkatXml

'  First, build a sample XML document:

Dim xml As New ChilkatXml

xml.Tag = "stocks"

Dim xmlM As ChilkatXml
Set xmlM = xml.NewChild("Microsoft","")
xmlM.NewChild2 "symbol","MSFT"
xmlM.NewChild2 "recentPrice","34.50"

Dim xmlG As ChilkatXml
Set xmlG = xml.NewChild("Google","")
xmlG.NewChild2 "symbol","GOOG"
xmlG.NewChild2 "recentPrice","679.00"

'  Display the unencrypted XML:
Text1.Text = Text1.Text & xml.GetXml() & vbCrLf
Text1.Refresh

'  This is the XML displayed:
'  <stocks>
'      <Microsoft>
'          <symbol>MSFT</symbol>
'          <recentPrice>34.50</recentPrice>
'      </Microsoft>
'      <Google>
'          <symbol>GOOG</symbol>
'          <recentPrice>679.00</recentPrice>
'      </Google>
'  </stocks>

'  The goal is to encrypt the "Microsoft" sub-tree.
'  The EncryptContent method encryptes the content
'  within a single XML node (not an entire sub-tree).
'  Therefore, to encrypt a sub-tree,  you must first
'  compress it into a single node, and then encrypt it.
xmlM.ZipTree 

'  Now encrypt the content using 128-bit AES encryption:
xmlM.EncryptContent "secretPassword"

'  Display the XML with the encrypted sub-tree:
Text1.Text = Text1.Text & xml.GetXml() & vbCrLf
Text1.Refresh

'  This is displayed:
'  <stocks>
'      <Microsoft><![CDATA
'  [JkiMcoK3Mi198rT30KvicDEzu5WuJgMH+8KS0UZbcRE
'  2CtdXplphV0iCdPMYnS01O6Ly6S4QCQSReMCshG/V3
'  8btJIZv/VLG9JZRsQk0bBafMhx7B2fQfm8YENke/JIM
'  ]]>    </Microsoft>
'      <Google>
'          <symbol>GOOG</symbol>
'          <recentPrice>679.00</recentPrice>
'      </Google>
'  </stocks>

'  Now decrypt and unzip:
xmlM.DecryptContent "secretPassword"
Dim success As Long
success = xmlM.UnzipTree()
If (success <> 1) Then
    Text1.Text = Text1.Text & "Failed to unzip tree" & vbCrLf
    Text1.Refresh
End If

'  Display the restored document:
Text1.Text = Text1.Text & xml.GetXml() & vbCrLf
Text1.Refresh


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

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