mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'public/integers_donna'
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user