Encrypt String

  • Thread starter Thread starter Genaro Sanchez
  • Start date Start date
G

Genaro Sanchez

Hi Group, How can I encrypt a string in .NET, using .NET References.

thanks a lot.

Genaro
 
Not sure what you mean by ".net references". Strings cannot be encrypted
but rather you convert the strings to byte arrays and encrypt the bytes.

How much information are you looking for because you should be able to find
lots of tutorials on encryption by searching google.

You can also take a look at the System.Security.Cryptography namespace.
 
Thanks
Peter Rilling said:
Not sure what you mean by ".net references". Strings cannot be encrypted
but rather you convert the strings to byte arrays and encrypt the bytes.

How much information are you looking for because you should be able to
find lots of tutorials on encryption by searching google.

You can also take a look at the System.Security.Cryptography namespace.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top