1
VINDIC
4y

How should I implement AES in C#
PS.This is just for fun if it isnt obvious

Comments
  • 3
    Yourself and propely.
  • 0
    There are implementations under the security namespace.

    Here is an example project on github I found

    https://gist.github.com/magicsih/...
  • 3
    I'm not sure if you're serious or this is some troll post, so...

    Use a lib that already does it for you and has been well maintained?
  • 2
    Write it in inline asm in C. Write a wrapper in C++ and load the wrapper in C#. Write proper unit test in all stages.

    Your question is so obvious to answer. Btw. We want arm and x86 implementations!
  • 2
    Steps to implement security functions:
    #1 Don't
    #2 Use a tested library
Add Comment