Create and use an RC2 object to encrypt and decrypt data in a file. : RC2 « Security « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Security » RC2 
21.6.1.Create and use an RC2 object to encrypt and decrypt data in a file.
Imports System.Security.Cryptography
Imports System.Text
Imports System.IO

Module RC2Sample
    Sub Main()
        Try
            Dim RC2alg As RC2 = RC2.Create("RC2")
            Dim sData As String = "this is a test"
            Dim FileName As String = "CText.txt"

            EncryptTextToFile(sData, FileName, RC2alg.Key, RC2alg.IV)
            Dim Final As String = DecryptTextFromFile(FileName, RC2alg.Key, RC2alg.IV)
            Console.WriteLine(Final)
        Catch As Exception
            Console.WriteLine(e.Message)
        End Try
    End Sub
    Sub EncryptTextToFile(ByVal Data As String, ByVal FileName As String, ByVal Key() As Byte, ByVal IV() As Byte)
        Try
            Dim fStream As FileStream = File.Open(FileName, FileMode.OpenOrCreate)
            Dim RC2alg As RC2 = RC2.Create
            Dim cStream As New CryptoStream(fStream,RC2alg.CreateEncryptor(Key, IV),CryptoStreamMode.Write)
            Dim sWriter As New StreamWriter(cStream)
            sWriter.WriteLine(Data)
            sWriter.Close()
            cStream.Close()
            fStream.Close()
        Catch As CryptographicException
            Console.WriteLine("A Cryptographic error occurred: {0}", e.Message)
        Catch As UnauthorizedAccessException
            Console.WriteLine("A file error occurred: {0}", e.Message)
        End Try
    End Sub
    Function DecryptTextFromFile(ByVal FileName As String, ByVal Key() As Byte, ByVal IV() As ByteAs String
        Try
            Dim fStream As FileStream = File.Open(FileName, FileMode.OpenOrCreate)
            Dim RC2alg As RC2 = RC2.Create
            Dim cStream As New CryptoStream(fStream,RC2alg.CreateDecryptor(Key, IV),CryptoStreamMode.Read)
            Dim sReader As New StreamReader(cStream)
            Dim val As String = sReader.ReadLine()
            sReader.Close()
            cStream.Close()
            fStream.Close()

            Return val
        Catch As CryptographicException
            Console.WriteLine("A Cryptographic error occurred: {0}", e.Message)
            Return Nothing
        Catch As UnauthorizedAccessException
            Console.WriteLine("A file error occurred: {0}", e.Message)
            Return Nothing
        End Try
    End Function
End Module
21.6.RC2
21.6.1.Create and use an RC2 object to encrypt and decrypt data in a file.
21.6.2.Create and use an RC2 object to encrypt and decrypt data in memory.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.