Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2022-05-10 15:53:35 +0300
committerAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2022-05-10 15:53:35 +0300
commit7861677bda0a1b19f67923f457fe12610a8cf0d0 (patch)
treeabebc2f5ef76b8f9d5da09afa5dab3f5d7a5b84c /src
parent071d61679ad6acc7aa41e4cc2b04b2f7b2bab254 (diff)
.......... [DEV-2159] fixed non-ASCII symbol
Diffstat (limited to 'src')
-rw-r--r--src/libs/zbxcrypto/aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/zbxcrypto/aes.c b/src/libs/zbxcrypto/aes.c
index 24cd9db3230..9a003e21ea5 100644
--- a/src/libs/zbxcrypto/aes.c
+++ b/src/libs/zbxcrypto/aes.c
@@ -122,7 +122,7 @@ static const uint8_t Rcon[11] =
*
* From Wikipedia's article on the Rijndael key schedule @ https://en.wikipedia.org/wiki/Rijndael_key_schedule#Rcon
*
- * "Only the first some of these constants are actually used – up to rcon[10] for AES-128 (as 11 round keys are needed),
+ * "Only the first some of these constants are actually used - up to rcon[10] for AES-128 (as 11 round keys are needed),
* up to rcon[8] for AES-192, up to rcon[7] for AES-256. rcon[0] is not used in AES algorithm."
*/