A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

aes-cbc/aes128cbc.h

Committer:
andrewboyson
Date:
2019-10-16
Revision:
20:197c3e6e8b8d
Parent:
aes/aes128cbc.h@ 19:f22327e8be7b

File content as of revision 20:197c3e6e8b8d:

#pragma once

#include <stdint.h>

#define AES128CBC_BLOCK_SIZE 16 //Block length in bytes AES is 128b block only

void Aes128CbcEncrypt(const uint8_t* key, const uint8_t* iv, uint8_t* buf, uint32_t length);
void Aes128CbcDecrypt(const uint8_t* key, const uint8_t* iv, uint8_t* buf, uint32_t length);