Embedded systems coursework 2.

Fork of Crypto_light by Edward Stott

Cipher.cpp

Committer:
feb11
Date:
2013-09-07
Revision:
0:7a1237bd2d13

File content as of revision 0:7a1237bd2d13:

#include "Cipher.h"

Cipher::~Cipher()
{
}


CIPHER_TYPE Cipher::getType() const
{
    return getBlockSize() <= 1 ? STREAM_CIPHER : BLOCK_CIPHER;
}