This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Need AES Algorithm for LPC1768

Hi to all
I am working on encryption AES Algorithm on LPC1768.
So I need a free Encryption AES Algorithm Source code for LPC1768.I am totally new to this.
Please provide me some useful source code to get this as soon as possible.

Thanks in advance
behbodi

Parents
  • If you have the source code for AES, then you can compile it on any 32-bit target machine - possibly after setting some #defines or adjusting some data types.

    It's only when you have a processor with AES in hardware, that you need a processor-specific implementation that knows how to set up that hardware and how to send in/read out data from that encryption engine.

    If you do not know how to get Keil to compile generic code you find on the net, then you should spend time reaching that level of expertise, because you will need it. Getting a ready project that compiles someones AES code doesn't help you much if you haven't the experience to know how it works, and why. And how to adapt as needed.

Reply
  • If you have the source code for AES, then you can compile it on any 32-bit target machine - possibly after setting some #defines or adjusting some data types.

    It's only when you have a processor with AES in hardware, that you need a processor-specific implementation that knows how to set up that hardware and how to send in/read out data from that encryption engine.

    If you do not know how to get Keil to compile generic code you find on the net, then you should spend time reaching that level of expertise, because you will need it. Getting a ready project that compiles someones AES code doesn't help you much if you haven't the experience to know how it works, and why. And how to adapt as needed.

Children