Anyone have the full code in ANSI C for Cryptography like DES64 or DES128, AES128 or RAS?
I have in mind the implementation one of these algorithms is smart cards, it´s possible?
Thanks...
Gorkin
Anyone have the full code in ANSI C for Cryptography like DES64 or DES128, AES128 or RAS?
I have in mind the implementation one of these algorithms is smart cards, it´s possible?
Thanks...
Gorkin
I guess you mean 8-bit uC, right? DES is not good choice in this case, even it can be implemented (check Keil installation - it has example of DES for x51). As to AES, one of the main requirement for cryptoalgorithms during AES contest was that they should be also optimized for smart card implementation. So, just check Google to download sources.
Also, I would recommend to give a look at Square algorithm. It is based on the same idea as Rijndael (and was developed by the same guys as well) and is very easy for implementation with low-level uC. RC4 is good choice if you need stream cipher.