This library implements some hash and cryptographic algorithms.

Dependents:   ES_CW2_Starter_JIN EMBEDDED_CW2 EMBEDDED_CW2_Final Spinnybois ... more

Fork of Crypto by Francois Berder

Cipher.h

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

File content as of revision 0:7a1237bd2d13:

#ifndef CIPHER_H
#define CIPHER_H

#include <stdint.h>

enum CIPHER_TYPE
{
    STREAM_CIPHER,
    BLOCK_CIPHER
};

class Cipher
{
    public :
    
        virtual ~Cipher();
        
        virtual void encrypt(uint8_t *out, uint8_t *in, uint32_t length) = 0;        
        virtual void decrypt(uint8_t *out, uint8_t *in, uint32_t length) = 0;        
        virtual uint32_t getBlockSize() const = 0;

        CIPHER_TYPE getType() const;

};


#endif