Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
10 changes: 5 additions & 5 deletions src/kex/kex.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -106,15 +106,15 @@ 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);

/**
* 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);

Expand Down
4 changes: 2 additions & 2 deletions src/kex_rlwe_bcns15/fft.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/rand/rand.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down