Click here to Skip to main content
15,886,258 members
Articles / Programming Languages / Visual Basic

.NET Encryption Simplified

Rate me:
Please Sign up or sign in to vote.
4.90/5 (209 votes)
28 Jan 2007CPOL10 min read 1.8M   23.8K   586  
A simple, string-oriented class for symmetric encryption, asymmetric encryption, and hashing.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EncryptionConsoleApplication", "Demo\EncryptionConsoleApplication.vbproj", "{EE2DABA5-B693-415C-94D5-D1692AD1E332}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "UnitTestsConsoleApplication", "UnitTests\UnitTestsConsoleApplication.vbproj", "{02CB65A5-A177-4EE7-9FEC-44E17CFF1160}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EncryptionClassLibrary", "ClassLibrary\EncryptionClassLibrary.vbproj", "{3C78AFE8-0C82-4009-A8BA-14F20F59A576}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{EE2DABA5-B693-415C-94D5-D1692AD1E332}.Debug.ActiveCfg = Debug|.NET
		{EE2DABA5-B693-415C-94D5-D1692AD1E332}.Debug.Build.0 = Debug|.NET
		{EE2DABA5-B693-415C-94D5-D1692AD1E332}.Release.ActiveCfg = Release|.NET
		{EE2DABA5-B693-415C-94D5-D1692AD1E332}.Release.Build.0 = Release|.NET
		{02CB65A5-A177-4EE7-9FEC-44E17CFF1160}.Debug.ActiveCfg = Debug|.NET
		{02CB65A5-A177-4EE7-9FEC-44E17CFF1160}.Debug.Build.0 = Debug|.NET
		{02CB65A5-A177-4EE7-9FEC-44E17CFF1160}.Release.ActiveCfg = Release|.NET
		{02CB65A5-A177-4EE7-9FEC-44E17CFF1160}.Release.Build.0 = Release|.NET
		{3C78AFE8-0C82-4009-A8BA-14F20F59A576}.Debug.ActiveCfg = Debug|.NET
		{3C78AFE8-0C82-4009-A8BA-14F20F59A576}.Debug.Build.0 = Debug|.NET
		{3C78AFE8-0C82-4009-A8BA-14F20F59A576}.Release.ActiveCfg = Release|.NET
		{3C78AFE8-0C82-4009-A8BA-14F20F59A576}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
My name is Jeff Atwood. I live in Berkeley, CA with my wife, two cats, and far more computers than I care to mention. My first computer was the Texas Instruments TI-99/4a. I've been a Microsoft Windows developer since 1992; primarily in VB. I am particularly interested in best practices and human factors in software development, as represented in my recommended developer reading list. I also have a coding and human factors related blog at www.codinghorror.com.

Comments and Discussions