mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	fix https://github.com/ossrs/srs/issues/3155 Build srt-1-fit fails with `standard attributes in middle of decl-specifiers` on GCC 12,Arch Linux. See https://github.com/Haivision/srt/releases/tag/v1.5.3
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SRT - Secure, Reliable, Transport
 | |
|  * Copyright (c) 2019 Haivision Systems Inc.
 | |
|  *
 | |
|  * This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| /*****************************************************************************
 | |
| written by
 | |
|    Haivision Systems Inc.
 | |
| 
 | |
|    2022-05-19 (jdube)
 | |
|         OpenSSL EVP AES CRYSPR/4SRT (CRYypto Service PRovider for SRT).
 | |
| *****************************************************************************/
 | |
| 
 | |
| #ifndef CRYSPR_OPENSSL_H
 | |
| #define CRYSPR_OPENSSL_H
 | |
| 
 | |
| #include <openssl/evp.h> /* PKCS5_xxx() */
 | |
| #include <openssl/aes.h> /* AES_xxx() */
 | |
| #if (OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(OPENSSL_IS_BORINGSSL))
 | |
| #include <openssl/modes.h> /* CRYPTO_xxx() */
 | |
| #endif
 | |
| #include <openssl/rand.h>
 | |
| #include <openssl/err.h>
 | |
| #include <openssl/opensslv.h> /* OPENSSL_VERSION_NUMBER */
 | |
| 
 | |
| /* Define CRYSPR_HAS_AESCTR to 1 if this CRYSPR has AESCTR cipher mode
 | |
|    if not set it 0 to use enable CTR cipher mode implementation using ECB cipher mode
 | |
|    and provide the aes_ecb_cipher method.
 | |
| */
 | |
| #define CRYSPR_HAS_AESCTR 1
 | |
| 
 | |
| /* Define CRYSPR_HAS_AESGCM to 1 if this CRYSPR has AES GCM cipher mode. OpenSSL EVP supports GCM.
 | |
| */
 | |
| #define CRYSPR_HAS_AESGCM 1
 | |
| 
 | |
| /* Define CRYSPR_HAS_AESKWRAP to 1 if this CRYSPR has AES Key Wrap
 | |
|    if not set to 0 to enable default/fallback crysprFallback_AES_WrapKey/crysprFallback_AES_UnwrapKey methods
 | |
|    and provide the aes_ecb_cipher method  .
 | |
| */
 | |
| #if 1 // Force internal AES-WRAP (using AES-ECB) until implemented with EVP (OPENSSL_VERSION_NUMBER < 0x00xxxxxxL)
 | |
| #define CRYSPR_HAS_AESKWRAP 0
 | |
| #else
 | |
| #define CRYSPR_HAS_AESKWRAP 1
 | |
| #endif
 | |
| 
 | |
| /* Define CRYSPR_HAS_PBKDF2 to 1 if this CRYSPR has SHA1-HMAC Password-based Key Derivaion Function 2
 | |
|    if not set to 0 to enable not-yet-implemented/fallback crysprFallback.km_pbkdf2 method
 | |
|    and provide the sha1_msg_digest method.
 | |
| */
 | |
| #define CRYSPR_HAS_PBKDF2 1 /* Define to 1 if CRYSPR has Password-based Key Derivaion Function 2 */
 | |
| 
 | |
| /*
 | |
| #define CRYSPR_AESCTX to the CRYSPR specifix AES key context object.
 | |
| This type reserves room in the CRYPSPR control block for Haicrypt KEK and SEK
 | |
| It is set from hte keystring through CRYSPR_methods.aes_set_key and passed
 | |
| to CRYSPR_methods.aes_*.
 | |
| */
 | |
| typedef EVP_CIPHER_CTX CRYSPR_AESCTX; /* CRYpto Service PRovider AES key context */
 | |
| 
 | |
| struct tag_CRYSPR_methods* crysprOpenSSL_EVP(void);
 | |
| 
 | |
| #endif /* CRYSPR_OPENSSL_H */
 |