1

Can somebody provide me a good Block Cipher Algorithm with example. This is required for Data Masking of Strings. Algorithm should be fast and not easily reversible as this will be applied on millions of records.

Either wise you can also suggest some other algorithm for fixed length Data masking algorithm which will be fast and not easily reversible.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129

1 Answers1

0

Use AES , it is a standard, proven secure and has libraries widely available. It should also be quite fast.

Markus Mikkolainen
  • 3,397
  • 18
  • 21
  • I would like to note that AES is not __proven__ to be secure, there's just a ton of smart people all around the world that tried to break it, and failed. Irrelevant for the question - just nitpicking :) – orlp Jun 28 '13 at 14:30
  • ah yes, proven as in proven technology, not as in mathematics. – Markus Mikkolainen Jun 29 '13 at 16:01