Aes256
Reinhard
Posts: 489
Because my daily work with crypto stuff, today I found this C code
http://www.literatecode.com/aes256
compiled without any modifications under propgcc .... and run successfull !
http://www.literatecode.com/aes256
compiled without any modifications under propgcc .... and run successfull !
Comments
Btw. in this code I see quite often the modifier register. Use the compiler really a cogregister for the variable or is this more a proposal ?
"register" is only a suggestion to the compiler that the variable can be placed in a register for some optimization. The compiler need not actually do that. For example if the target machine is stack based with no registers.
If you can get the "register" vars to live in cog all the better.