Format again?

This commit is contained in:
Willy-JL
2023-08-11 22:56:38 +02:00
parent 12004d0ef4
commit d114dbe196

View File

@@ -65,8 +65,8 @@ int aes_setkey(
int mode, // 1 or 0 for Encrypt/Decrypt
const uchar* key, // AES input key
uint keysize); // size in bytes (must be 16, 24, 32 for
// 128, 192 or 256-bit keys respectively)
// returns 0 for success
// 128, 192 or 256-bit keys respectively)
// returns 0 for success
/******************************************************************************
* AES_CIPHER : called to encrypt or decrypt ONE 128-bit block of data
@@ -75,6 +75,6 @@ int aes_cipher(
aes_context* ctx, // pointer to context
const uchar input[16], // 128-bit block to en/decipher
uchar output[16]); // 128-bit output result block
// returns 0 for success
// returns 0 for success
#endif /* AES_HEADER */