Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Help I am trying to do a program to read a string then encrypt it!
Posted

 
Share this answer
 
Use the encryption methods to encrypt a string

For getting a string from user use get set properties
like

Private _name As String

Public Property Name() As String
Get
Return _name
End Get
Private Set(ByVal value As String)
_name = value
End Set
End Property

here i am giving a link that explains simple encrypt and decrypt string
http://www.dotnetstuff.co.cc/2011/12/encript-string-in-net.html[^]
 
Share this answer
 
v2
[This is not an answer, should be removed — SA]

actually i am doing the program as a web application
 
Share this answer
 
v2

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900