Skip to content

Commit

Permalink
fix header
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyBel committed Feb 14, 2024
1 parent 8a85009 commit 012bc7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ This library does not provide any padding because padding is not part of AES sta
# Development:

1. `git clone https://github.com/SergeyBel/AES.git`
1. `docker-compose build`
1. `docker-compose up -d`
1. use make commands

Expand Down
4 changes: 2 additions & 2 deletions src/AES.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ class AES {
void KeyExpansion(const unsigned char key[], unsigned char w[]);

void EncryptBlock(const unsigned char in[], unsigned char out[],
unsigned char key[]);
unsigned char *roundKeys);

void DecryptBlock(const unsigned char in[], unsigned char out[],
unsigned char key[]);
unsigned char *roundKeys);

void XorBlocks(const unsigned char *a, const unsigned char *b,
unsigned char *c, unsigned int len);
Expand Down

0 comments on commit 012bc7f

Please sign in to comment.