Encryption Alogrithm Problem

lamnic

Member
Joined
Apr 11, 2006
Messages
6
Programming Experience
Beginner
I wanna know is there exist any encryption algorithm in vb.net so that I can encrypt an arbitrary length raw data into an string with fixed length of 16 alpha-numeric encrypted characters? Thx.
 
Hi

It's not possible to have two-way encryption of text that results in a fixed length ciphertext.

Hash functions produce a fixed length result, but they cannot be decrypted. No .Net hash implementation meets your requirements for length.

Hope this helps
 
Back
Top