Fork of François Berder Crypto, fixed AES CBC and small rework

Dependents:   AES_example shaun_larada Smartage

Fork of Crypto by Francois Berder

Committer:
Geremia
Date:
Wed Jan 28 17:55:13 2015 +0000
Revision:
16:4399e2e6260b
Parent:
7:2dbbdfb08123
AES: bugfixed CBC, added PCBC (i could add CFB and OFB if needed), added public setIV(), moved keyExpansion() to public, in and out buffers can be the same

Who changed what in which revision?

UserRevisionLine numberNew contents of line
feb11 0:7a1237bd2d13 1 #ifndef SHA2_H
feb11 0:7a1237bd2d13 2 #define SHA2_H
feb11 0:7a1237bd2d13 3
feb11 0:7a1237bd2d13 4 #include "SHA224.h"
feb11 0:7a1237bd2d13 5 #include "SHA256.h"
feb11 0:7a1237bd2d13 6 #include "SHA384.h"
feb11 0:7a1237bd2d13 7 #include "SHA512.h"
feb11 0:7a1237bd2d13 8
feb11 0:7a1237bd2d13 9 #endif