TAY

Fork of Crypto_light by Edward Stott

DES.cpp

Committer:
feb11
Date:
2013-09-12
Revision:
5:06cd9c8afa0b

File content as of revision 5:06cd9c8afa0b:

#include "DES.h"


DES::DES(uint8_t *key):
Cipher()
{
//    loadKey(key);
}

void DES::encrypt(uint8_t *out, uint8_t *in, uint32_t length)
{

}
     
void DES::decrypt(uint8_t *out, uint8_t *in, uint32_t length)
{

}

uint32_t DES::getBlockSize() const
{
    return 8;
}

CIPHER_TYPE DES::getType() const
{
    return STREAM_CIPHER;
}