1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

AppleM1: Update openssl to v1.1.1l

This commit is contained in:
winlin 2022-08-14 19:05:01 +08:00
parent 1fe12b8e8c
commit b787656eea
990 changed files with 13406 additions and 18710 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))