Skip to content

Commit 121ec99

Browse files
committed
update(vendor/openssl/linux): Downgrading to 1.1.1
1 parent e6daa42 commit 121ec99

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+7158
-18233
lines changed

vendor/openssl/linuxsteamrt64/include/openssl/aes.h

Lines changed: 27 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
/*
2-
* Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
2+
* Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
33
*
4-
* Licensed under the Apache License 2.0 (the "License"). You may not use
4+
* Licensed under the OpenSSL license (the "License"). You may not use
55
* this file except in compliance with the License. You can obtain a copy
66
* in the file LICENSE in the source distribution or at
77
* https://www.openssl.org/source/license.html
88
*/
99

10-
#ifndef OPENSSL_AES_H
11-
# define OPENSSL_AES_H
12-
# pragma once
13-
14-
# include <openssl/macros.h>
15-
# ifndef OPENSSL_NO_DEPRECATED_3_0
16-
# define HEADER_AES_H
17-
# endif
10+
#ifndef HEADER_AES_H
11+
# define HEADER_AES_H
1812

1913
# include <openssl/opensslconf.h>
2014

@@ -23,85 +17,72 @@
2317
extern "C" {
2418
# endif
2519

26-
# define AES_BLOCK_SIZE 16
27-
28-
# ifndef OPENSSL_NO_DEPRECATED_3_0
29-
30-
# define AES_ENCRYPT 1
31-
# define AES_DECRYPT 0
32-
33-
# define AES_MAXNR 14
20+
# define AES_ENCRYPT 1
21+
# define AES_DECRYPT 0
3422

23+
/*
24+
* Because array size can't be a const in C, the following two are macros.
25+
* Both sizes are in bytes.
26+
*/
27+
# define AES_MAXNR 14
28+
# define AES_BLOCK_SIZE 16
3529

3630
/* This should be a hidden type, but EVP requires that the size be known */
3731
struct aes_key_st {
38-
# ifdef AES_LONG
32+
# ifdef AES_LONG
3933
unsigned long rd_key[4 * (AES_MAXNR + 1)];
40-
# else
34+
# else
4135
unsigned int rd_key[4 * (AES_MAXNR + 1)];
42-
# endif
36+
# endif
4337
int rounds;
4438
};
4539
typedef struct aes_key_st AES_KEY;
4640

47-
# endif
48-
# ifndef OPENSSL_NO_DEPRECATED_3_0
49-
OSSL_DEPRECATEDIN_3_0 const char *AES_options(void);
50-
OSSL_DEPRECATEDIN_3_0
41+
const char *AES_options(void);
42+
5143
int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
5244
AES_KEY *key);
53-
OSSL_DEPRECATEDIN_3_0
5445
int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
5546
AES_KEY *key);
56-
OSSL_DEPRECATEDIN_3_0
47+
5748
void AES_encrypt(const unsigned char *in, unsigned char *out,
5849
const AES_KEY *key);
59-
OSSL_DEPRECATEDIN_3_0
6050
void AES_decrypt(const unsigned char *in, unsigned char *out,
6151
const AES_KEY *key);
62-
OSSL_DEPRECATEDIN_3_0
52+
6353
void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
6454
const AES_KEY *key, const int enc);
65-
OSSL_DEPRECATEDIN_3_0
6655
void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
6756
size_t length, const AES_KEY *key,
6857
unsigned char *ivec, const int enc);
69-
OSSL_DEPRECATEDIN_3_0
7058
void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out,
7159
size_t length, const AES_KEY *key,
7260
unsigned char *ivec, int *num, const int enc);
73-
OSSL_DEPRECATEDIN_3_0
7461
void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out,
7562
size_t length, const AES_KEY *key,
7663
unsigned char *ivec, int *num, const int enc);
77-
OSSL_DEPRECATEDIN_3_0
7864
void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out,
7965
size_t length, const AES_KEY *key,
8066
unsigned char *ivec, int *num, const int enc);
81-
OSSL_DEPRECATEDIN_3_0
8267
void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out,
8368
size_t length, const AES_KEY *key,
8469
unsigned char *ivec, int *num);
85-
8670
/* NB: the IV is _two_ blocks long */
87-
OSSL_DEPRECATEDIN_3_0
8871
void AES_ige_encrypt(const unsigned char *in, unsigned char *out,
8972
size_t length, const AES_KEY *key,
9073
unsigned char *ivec, const int enc);
9174
/* NB: the IV is _four_ blocks long */
92-
OSSL_DEPRECATEDIN_3_0
9375
void AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out,
94-
size_t length, const AES_KEY *key, const AES_KEY *key2,
95-
const unsigned char *ivec, const int enc);
96-
OSSL_DEPRECATEDIN_3_0
76+
size_t length, const AES_KEY *key,
77+
const AES_KEY *key2, const unsigned char *ivec,
78+
const int enc);
79+
9780
int AES_wrap_key(AES_KEY *key, const unsigned char *iv,
98-
unsigned char *out, const unsigned char *in,
99-
unsigned int inlen);
100-
OSSL_DEPRECATEDIN_3_0
81+
unsigned char *out,
82+
const unsigned char *in, unsigned int inlen);
10183
int AES_unwrap_key(AES_KEY *key, const unsigned char *iv,
102-
unsigned char *out, const unsigned char *in,
103-
unsigned int inlen);
104-
# endif
84+
unsigned char *out,
85+
const unsigned char *in, unsigned int inlen);
10586

10687

10788
# ifdef __cplusplus

vendor/openssl/linuxsteamrt64/include/openssl/applink.c

Lines changed: 0 additions & 153 deletions
This file was deleted.

0 commit comments

Comments
 (0)