summaryrefslogtreecommitdiff
path: root/toxcore/crypto_core.h
diff options
context:
space:
mode:
authoryangfl <yangfl@users.noreply.github.com>2018-09-19 11:15:50 +0800
committeriphydf <iphydf@users.noreply.github.com>2018-09-19 18:16:13 +0000
commitd3d5b701cb940e5f6c7cb2af199428fc8224e665 (patch)
tree227460e1cde95443856ccbc5f0bcf082874bd41c /toxcore/crypto_core.h
parent758bd9aa871666e1003691531f22f6dc515625bf (diff)
Fix typos
Diffstat (limited to 'toxcore/crypto_core.h')
-rw-r--r--toxcore/crypto_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/crypto_core.h b/toxcore/crypto_core.h
index b287b21e..c2f0296e 100644
--- a/toxcore/crypto_core.h
+++ b/toxcore/crypto_core.h
@@ -202,7 +202,7 @@ int32_t decrypt_data(const uint8_t *public_key, const uint8_t *secret_key, const
202/** 202/**
203 * Fast encrypt/decrypt operations. Use if this is not a one-time communication. 203 * Fast encrypt/decrypt operations. Use if this is not a one-time communication.
204 * encrypt_precompute does the shared-key generation once so it does not have 204 * encrypt_precompute does the shared-key generation once so it does not have
205 * to be preformed on every encrypt/decrypt. 205 * to be performed on every encrypt/decrypt.
206 */ 206 */
207int32_t encrypt_precompute(const uint8_t *public_key, const uint8_t *secret_key, uint8_t *shared_key); 207int32_t encrypt_precompute(const uint8_t *public_key, const uint8_t *secret_key, uint8_t *shared_key);
208 208