🔫 some typos (#9)

This commit is contained in:
Tancrède Lepoint 2016-09-29 10:51:16 -04:00 committed by Douglas Stebila
parent 0f91794164
commit 5521fe8c8d
4 changed files with 9 additions and 9 deletions

View File

@ -111,4 +111,4 @@ The Open Quantum Safe project is lead by [Michele Mosca](http://faculty.iqc.uwat
### Support
Development of Open Quantum Safe has been supported in part by the Tutte Institute for Mathematics and Computing. Research projects which developed specific components of Open Quantum Safe have been supported by various research grants; see the source papers for funding acknowledgements.
Development of Open Quantum Safe has been supported in part by the Tutte Institute for Mathematics and Computing. Research projects which developed specific components of Open Quantum Safe have been supported by various research grants; see the source papers for funding acknowledgments.

View File

@ -68,7 +68,7 @@ typedef struct OQS_KEX {
/**
* Pointer to a function for public and private key generation by Alice.
*
* @param k Key exchange strucure
* @param k Key exchange structure
* @param alice_priv Alice's private key
* @param alice_msg Alice's public key
* @param alice_msg_len Alice's public key length
@ -79,7 +79,7 @@ typedef struct OQS_KEX {
/**
* Pointer to a function for public, private and shared key generation by Bob.
*
* @param k Key exchange strucure
* @param k Key exchange structure
* @param alice_msg Alice's public key
* @param alice_msg_len Alice's public key length
* @param bob_msg Bob's public key
@ -93,7 +93,7 @@ typedef struct OQS_KEX {
/**
* Pointer to a function for shared key generation by Alice.
*
* @param k Key exchange strucure
* @param k Key exchange structure
* @param alice_priv Alice's private key
* @param bob_msg Bob's public key
* @param bob_msg_len Bob's public key length
@ -106,7 +106,7 @@ typedef struct OQS_KEX {
/**
* Pointer to a function for freeing Alice's private key
*
* @param k Key exchange strucure
* @param k Key exchange structure
* @param alice_priv Alice's private key
*/
void (*alice_priv_free)(OQS_KEX *k, void *alice_priv);
@ -114,7 +114,7 @@ typedef struct OQS_KEX {
/**
* Pointer to a function for freeing the allocated key exchange structure
*
* @param k Key exchange strucure
* @param k Key exchange structure
*/
void (*free)(OQS_KEX *k);

View File

@ -25,7 +25,7 @@ static void *(*volatile rlwe_memset_volatile)(void *, int, size_t) = memset;
/* Caution:
* We use a redundant representation where the integer 0 is represented both
* by 0 and 2^32-1.
* This approach follows the describtion from the paper:
* This approach follows the description from the paper:
* Joppe W. Bos, Craig Costello, Huseyin Hisil, and Kristin Lauter: Fast Cryptography in Genus 2
* EUROCRYPT 2013, Lecture Notes in Computer Science 7881, pp. 194-210, Springer, 2013.
* More specifically see: Section 3 related to Modular Addition/Subtraction.
@ -88,7 +88,7 @@ static uint32_t reverse(uint32_t x) {
/* Nussbaumer approach, see:
* H. J. Nussbaumer. Fast polynomial transform algorithms for digital convolution. Acoustics, Speech and
* Signal Processing, IEEE Transactions on, 28(2):205{215, 1980
* We followed the describtion from Knuth:
* We followed the description from Knuth:
* D. E. Knuth. Seminumerical Algorithms. The Art of Computer Programming. Addison-Wesley, Reading,
* Massachusetts, USA, 3rd edition, 1997
* Exercise Exercise 4.6.4.59.

View File

@ -1,6 +1,6 @@
/**
* \file rand.h
* \brief Header defining the generic OQS PRGN
* \brief Header defining the generic OQS PRNG
*/
#ifndef __OQS_RAND_H