Skip to content

Commit 50ad4b7

Browse files
committed
Correct code comments for decrypt_detached functions
1 parent 2685363 commit 50ad4b7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/include/aegis128l.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis128l_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const ui
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

src/include/aegis128x2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis128x2_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const u
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

src/include/aegis128x4.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis128x4_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const u
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

src/include/aegis256.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis256_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const uin
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

src/include/aegis256x2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis256x2_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const u
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

src/include/aegis256x4.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int aegis256x4_encrypt_detached(uint8_t *c, uint8_t *mac, size_t maclen, const u
7474
const uint8_t *k);
7575

7676
/*
77-
* Decrypt a message with AEGIS in one shot mode, returning the tag and the ciphertext separately.
77+
* Decrypt a message with AEGIS in one shot mode with a detached tag.
7878
*
7979
* m: plaintext output buffer
8080
* c: ciphertext input buffer

0 commit comments

Comments
 (0)