Import OpenSSL 1.1.1f

This commit is contained in:
Steve Dower
2020-04-03 21:53:21 +01:00
parent 6f2f71e7ea
commit e531386a2f
993 changed files with 23821 additions and 3602 deletions

View File

@@ -12,8 +12,8 @@
#ifndef OPENSSL_NO_SM3
# include <openssl/evp.h>
# include "internal/evp_int.h"
# include "internal/sm3.h"
# include "crypto/evp.h"
# include "crypto/sm3.h"
static int init(EVP_MD_CTX *ctx)
{

View File

@@ -10,7 +10,7 @@
*/
#include <openssl/e_os2.h>
#include "sm3_locl.h"
#include "sm3_local.h"
int sm3_init(SM3_CTX *c)
{

View File

@@ -10,7 +10,7 @@
*/
#include <string.h>
#include "internal/sm3.h"
#include "crypto/sm3.h"
#define DATA_ORDER_IS_BIG_ENDIAN
@@ -36,7 +36,7 @@
void sm3_transform(SM3_CTX *c, const unsigned char *data);
#include "internal/md32_common.h"
#include "crypto/md32_common.h"
#define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17))
#define P1(X) (X ^ ROTATE(X, 15) ^ ROTATE(X, 23))