Skip to content

Commit 16b2e5e

Browse files
committed
Renamed from cryptolib to aeslib
1 parent 3533538 commit 16b2e5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cryptolib.c renamed to aeslib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "cryptolib.h"
1+
#include "aeslib.h"
22
#include <stdint.h>
33
#include "aes.h"
44
#include "bcal_aes128.h"

cryptolib.h renamed to aeslib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef CRYPTOLIB_H
2-
#define CRYPTOLIB_H
1+
#ifndef AESLIB_H
2+
#define AESLIB_H
33
#include <stdint.h>
44
void aes128_encrypt(uint8_t* key, uint8_t* iv, uint8_t* data, uint32_t data_len);
55

0 commit comments

Comments
 (0)