Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Crypto_light by
DES.h@5:06cd9c8afa0b, 2013-09-12 (annotated)
- Committer:
- feb11
- Date:
- Thu Sep 12 15:08:51 2013 +0000
- Revision:
- 5:06cd9c8afa0b
- Parent:
- 1:14a7cea431aa
change API & small improvements in SHA-2
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
feb11 | 5:06cd9c8afa0b | 1 | #ifndef DES_H |
feb11 | 5:06cd9c8afa0b | 2 | #define DES_H |
feb11 | 5:06cd9c8afa0b | 3 | |
feb11 | 5:06cd9c8afa0b | 4 | #include "Cipher.h" |
feb11 | 5:06cd9c8afa0b | 5 | |
feb11 | 5:06cd9c8afa0b | 6 | |
feb11 | 5:06cd9c8afa0b | 7 | class DES : public Cipher |
feb11 | 5:06cd9c8afa0b | 8 | { |
feb11 | 5:06cd9c8afa0b | 9 | public : |
feb11 | 5:06cd9c8afa0b | 10 | |
feb11 | 5:06cd9c8afa0b | 11 | DES(uint8_t* key); |
feb11 | 5:06cd9c8afa0b | 12 | |
feb11 | 5:06cd9c8afa0b | 13 | virtual void encrypt(uint8_t *out, uint8_t *in, uint32_t length); |
feb11 | 5:06cd9c8afa0b | 14 | virtual void decrypt(uint8_t *out, uint8_t *in, uint32_t length); |
feb11 | 5:06cd9c8afa0b | 15 | virtual uint32_t getBlockSize() const; |
feb11 | 5:06cd9c8afa0b | 16 | |
feb11 | 5:06cd9c8afa0b | 17 | CIPHER_TYPE getType() const; |
feb11 | 5:06cd9c8afa0b | 18 | |
feb11 | 5:06cd9c8afa0b | 19 | private : |
feb11 | 5:06cd9c8afa0b | 20 | |
feb11 | 5:06cd9c8afa0b | 21 | uint8_t keys[16][7]; |
feb11 | 5:06cd9c8afa0b | 22 | }; |
feb11 | 5:06cd9c8afa0b | 23 | |
feb11 | 5:06cd9c8afa0b | 24 | #endif |