Minor fixes
authorMatt Corallo <git@bluematt.me>
Sun, 8 Sep 2013 14:56:01 +0000 (10:56 -0400)
committerMatt Corallo <git@bluematt.me>
Thu, 5 Sep 2013 15:02:04 +0000 (11:02 -0400)
shamirssecret.h

index d84804082e3ecde7e8d5960716f32f75c57ecbff..6aceb113481c647b851e18e2837f4aeb83d9f225 100644 (file)
  * Place - Suite 330, Boston, MA 02111-1307 USA.
  */
 
  * Place - Suite 330, Boston, MA 02111-1307 USA.
  */
 
+#ifndef IN_KERNEL
 #include <stdint.h>
 #include <stdint.h>
+#else
+#include <linux/types.h>
+#endif
 
 #define P 256
 
 /**
  * Calculates the Y coordinate that the point with the given X
 
 #define P 256
 
 /**
  * Calculates the Y coordinate that the point with the given X
- * coefficients[0] == secret, the rest are random values
+ * coefficients[0] == secret, the rest are secure random values
  */
 uint8_t calculateQ(uint8_t coefficients[], uint8_t shares_required, uint8_t x);
 
  */
 uint8_t calculateQ(uint8_t coefficients[], uint8_t shares_required, uint8_t x);