Skip to content
Snippets Groups Projects
Commit c76da13c authored by Richard Levitte's avatar Richard Levitte
Browse files

constant time test: include our internal/numbers.h rather than limits.h


Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1856)
parent 3ee24d4a
Branches
Tags
No related merge requests found
......@@ -9,12 +9,12 @@
#include "internal/constant_time_locl.h"
#include "e_os.h"
#include <openssl/e_os2.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include "internal/numbers.h"
static const unsigned int CONSTTIME_TRUE = (unsigned)(~0);
static const unsigned int CONSTTIME_FALSE = 0;
static const unsigned char CONSTTIME_TRUE_8 = 0xff;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment