Hi
Can anyone give me code or links for sample 128 bit CFB type of AES IMplementation.
Can it be written using .Net. If so can you please explain how.
Thanks
Hi
Can anyone give me code or links for sample 128 bit CFB type of AES IMplementation.
Can it be written using .Net. If so can you please explain how.
Thanks
This answer on SO might lead you in the right direction. Hope it helps!
Update: From the example linked above (I don't want to copy-pasta @Dan Esparza's entire answer) I believe you'd just make a call to:
myRijndael.Mode = CipherMode.CFB
To get the behavior you're looking for.