Rijndael算法算法、Rijndael

2023-09-11 06:23:51 作者:梦得

我要工作使用C#的Rijndael算法。任何人可以帮助我解决这个好吗?

I want to work on the Rijndael algorithm using C#. Can anybody help me with this please?

推荐答案

我假设你指的是Rijndael加密算法 - 在这种情况下,RinjdaelManaged会使用。 MSDN文档(previous链接)的例子,还是有很多其他的引用,例如看这里。

I'm assuming you mean the Rijndael encryption algorithm - in which case RinjdaelManaged would be of use. The MSDN documentation (previous link) has examples, or there are lots of other references, for example see here.

我看到(注释其他回复),你正在寻找在实施这一自己......一些想法:

I see (comments to other reply) that you are looking at implementing this yourself... some thoughts:

请不要 为什么? 请不要

除非这是纯粹是为了兴趣,固守现有的实现。它会吃的时间,并有可能引入安全漏洞。我想不出一个很好的理由来改写这个。

Unless this is purely for interest, stick to the existing implementation. It will eat time, and potentially introduce security weaknesses. I can't think of a good reason to rewrite this.