innvocation -> invocation

This commit is contained in:
Frank Denis 2013-12-09 16:56:33 -08:00
parent 71fb3e3dda
commit d0793255a3
5 changed files with 10 additions and 10 deletions

View File

@ -48,7 +48,7 @@ const char *crypto_auth_primitive(void);
* @pre key must be of length crypto_auth_KEY_BYTES
* @post the first crypto_auth_BYTES of auth will contain the result.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char k[crypto_auth_KEYBYTES];

View File

@ -94,7 +94,7 @@ const char *crypto_box_primitive(void);
* @post first crypto_box_PUBLICKEYTBYTES of pk will be the key data.
* @post first crypto_box_SECRETKEYTBYTES of sk will be the key data.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
*
@ -120,7 +120,7 @@ int crypto_box_keypair(unsigned char *pk, unsigned char *sk);
* for both crypto_box_afternm and crypto_box_open_afternm, and can be
* reused for any number of messages.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* unsigned char k[crypto_box_BEFORENMBYTES];
@ -151,7 +151,7 @@ int crypto_box_beforenm(unsigned char *k,
* @post first crypto_box_BOXZERBYTES of ctxt be all 0.
* @post first mlen bytes of ctxt will contain the ciphertext.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char k[crypto_box_BEFORENMBYTES];
@ -186,7 +186,7 @@ int crypto_box_afternm(unsigned char *c,
* @post first clen bytes of msg will contain the plaintext.
* @post first crypto_box_ZEROBYTES of msg will be all 0.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
*
@ -223,7 +223,7 @@ int crypto_box_open_afternm(unsigned char *m,
* @post first crypto_box_BOXZERBYTES of ctxt be all 0.
* @post first mlen bytes of ctxt will contain the ciphertext.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char pk[crypto_box_PUBLICKEYBYTES];
@ -262,7 +262,7 @@ int crypto_box(unsigned char *c,
* @post first clen bytes of msg will contain the plaintext.
* @post first crypto_box_ZEROBYTES of msg will be all 0.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char pk[crypto_box_PUBLICKEYBYTES];

View File

@ -48,7 +48,7 @@ const char *crypto_onetimeauth_primitive(void);
* @pre key must be of length crypto_onetimeauth_KEY_BYTES
* @post the first crypto_onetimeauth_BYTES of the token will contain the result.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char k[crypto_onetimeauth_KEYBYTES];

View File

@ -100,7 +100,7 @@ int crypto_secretbox(unsigned char *c, const unsigned char *m,
* @warning if verification fails msg may contain data from the
* computation.
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char k[crypto_secretbox_KEYBYTES];

View File

@ -125,7 +125,7 @@ int crypto_sign(unsigned char *sm, unsigned long long *smlen,
* @warning if verification fails msg may contain data from the
* computation.
*
* Example innvocation:
* Example invocation:
*
*~~~~~{.c}
* const unsigned char pk[crypto_sign_PUBLICKEYBYTES];