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.
Dependents: mBuinoBlinky PB_Emma_Ethernet SLOTrashHTTP Garagem ... more
cipher/TDES.h
- Committer:
- feb11
- Date:
- 2014-05-11
- Revision:
- 14:f04410cef037
- Parent:
- 8:a090264e9b2d
File content as of revision 14:f04410cef037:
#ifndef TDES_H #define TDES_H #include "DES.h" class TDES : public BlockCipher { public : TDES(uint8_t *key1, uint8_t *key2, uint8_t *key3); TDES(uint8_t *key1, uint8_t *key2, uint8_t *key3, uint8_t *iv); private : virtual void encryptBlock(uint8_t *out, uint8_t *in); virtual void decryptBlock(uint8_t *out, uint8_t *in); DES a,b,c; }; #endif