diff options
Diffstat (limited to 'toxcore/crypto_core.c')
-rw-r--r-- | toxcore/crypto_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/crypto_core.c b/toxcore/crypto_core.c index 5875bca2..5538b1b8 100644 --- a/toxcore/crypto_core.c +++ b/toxcore/crypto_core.c | |||
@@ -242,7 +242,7 @@ int32_t decrypt_data(const uint8_t *public_key, const uint8_t *secret_key, const | |||
242 | /* Increment the given nonce by 1. */ | 242 | /* Increment the given nonce by 1. */ |
243 | void increment_nonce(uint8_t *nonce) | 243 | void increment_nonce(uint8_t *nonce) |
244 | { | 244 | { |
245 | /* TODO(irungentoo): use increment_nonce_number(nonce, 1) or | 245 | /* TODO(irungentoo): use `increment_nonce_number(nonce, 1)` or |
246 | * sodium_increment (change to little endian). | 246 | * sodium_increment (change to little endian). |
247 | * | 247 | * |
248 | * NOTE don't use breaks inside this loop. | 248 | * NOTE don't use breaks inside this loop. |