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

 

 

 

 

 

 

Generate Psuedo-Random Data using ARC4 as a PRNG

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

This example demonstrates how to use the ARC4 stream encryption algorithm as a pseudo-random number generator (PRNG). This example generates the random data as hex encoded strings. The EncryptStringENC method can be replaced with EncryptBytes to generate random bytes.

Dim crypt As New Chilkat.Crypt2()

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


crypt.CryptAlgorithm = "arc4"
crypt.KeyLength = 128

crypt.SetEncodedKey("000102030405060708090A0B0C0D0E0F","hex")

crypt.EncodingMode = "hex"

'  We will repeatedly feed these 8-bytes of data to
'  the ARC4 stream encryptor to generate our pseudo-random
'  sequence.
Dim strData As String
strData = "012345678"

'  Set FirstChunk to True to initialize the ARC4 PRNG with the key.
crypt.FirstChunk = true
crypt.LastChunk = false

Dim encryptedText As String
encryptedText = crypt.EncryptStringENC(strData)
TextBox1.Text = TextBox1.Text & encryptedText & vbCrLf
TextBox1.Refresh()

'  Set FirstChunk to False to continue encrypting
'  without re-initializing the ARC4 PRNG
crypt.FirstChunk = false

Dim i As Long
For i = 1 To 15
    '  Repeatedly encrypting the same 8 bytes of data
    '  produces then pseudo-random sequence.
    encryptedText = crypt.EncryptStringENC(strData)
    TextBox1.Text = TextBox1.Text & encryptedText & vbCrLf
    TextBox1.Refresh()
Next
 

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

Mail Component · XML Parser