Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am looking for an C# implementation om AES-256 in CTR-mode [closed]

Tags:

c#

aes

I've been searching the internet for an implementation of AES-256 in CTR-mode, in C#. In the RijndaelManaged-class where you find in .Net-framework, you find some supported modes but not CTR. I read something about using ECB-mode, and XOR the plain-text.

Does anyone have information how to implement the AES-256 in CTR-mode? Or an link or anything tha would help me to the right path.

Thanks you.

like image 467
Hypnobrew Avatar asked Feb 07 '11 15:02

Hypnobrew


1 Answers

I think that Bouncy Castle supports CTR

http://www.bouncycastle.org/

like image 195
Chris Haas Avatar answered Sep 24 '22 13:09

Chris Haas