I'm looking for way of encrypting/decrypting a specific value but with different output every time.
I have a list of users and each has an UserId which is a Guid.
User1: 00838CED-6926-4632-830F-B8F509BEC0F5
User2: 7DEAAC47-FE88-4943-BFDE-AAC986F65A23
User3: ECBB005F-1E6B-441A-8538-944383D6C0AE
.........
UserN: 479A344E-364D-4DA7-A3F8-99D94301815F
Then I want to be able to encrypt these guids in such a way that each time I get a different output. And when I decrypt it it will get me that UserId which is the guid.
Any ideas?