What is the difference between Aes and AesManaged

后端 未结 3 870
说谎
说谎 2020-12-19 02:35

I found two class in C# related to AES, and example code of them MSDN provides are similar, what is the difference between these two classes?

3条回答
  •  没有蜡笔的小新
    2020-12-19 02:58

    AES is the abstract base class while AESManaged is a managed implementation of AES based upon Rijndael symmetric algorithm with a fixed block size and iteration count.

提交回复
热议问题