Skip to content
Snippets Groups Projects
Commit b90f9ebb authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Merge remote-tracking branch 'public/integers_donna'

parents 5d400b5f 4beee0f6
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (portability)
- Tweak the curve25519-donna*.c implementations to tolerate systems
that lack stdint.h. Fixes bug 3894; bugfix on 0.2.4.8-alpha.
......@@ -22,8 +22,10 @@
* from the sample implementation.
*/
#include "orconfig.h"
#include <string.h>
#include <stdint.h>
#include "torint.h"
typedef uint8_t u8;
typedef uint64_t limb;
......
......@@ -46,8 +46,10 @@
* from the sample implementation.
*/
#include "orconfig.h"
#include <string.h>
#include <stdint.h>
#include "torint.h"
typedef uint8_t u8;
typedef int32_t s32;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment