Link to home
Start Free TrialLog in
Avatar of curiouswebster
curiouswebsterFlag for United States of America

asked on

Need a poor man's encryption

Need a poor man's encryption

I have used AES (or is it EAS?) in my C# WinForms program. BUt for this aplication I was thinkg about something smaller and made up of small number of lines of code. It's not something that needs to be very secure. But I woud like it to be not usable as is.

Are there any simple algorithms that scramble and rename characters to otherwise make a mess out of a string?

This is for C#.

Thanks,
newbieweb
Avatar of sam_gibson
sam_gibson

How about using a MD5 hash, if you can get away with one-way encryption?
SOLUTION
Avatar of Rajkumar Gs
Rajkumar Gs
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of curiouswebster

ASKER

What's MD5 hash? Is there C# available for that?
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks.