mirror of
https://github.com/openssl/openssl.git
synced 2025-01-24 13:55:42 +08:00
e158ada6a7
We no longer use the old buffer management code now that it has all been moved to the new record layer. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19424)
25 lines
564 B
Plaintext
25 lines
564 B
Plaintext
SUBDIRS=methods
|
|
|
|
#Needed for the multiblock code in rec_layer_s3.c
|
|
IF[{- !$disabled{asm} -}]
|
|
$AESDEF_x86=AES_ASM
|
|
$AESDEF_x86_64=AES_ASM
|
|
|
|
IF[$AESDEF_{- $target{asm_arch} -}]
|
|
$AESDEF=$AESDEF_{- $target{asm_arch} -}
|
|
ENDIF
|
|
ENDIF
|
|
|
|
SOURCE[../../libssl]=\
|
|
rec_layer_s3.c rec_layer_d1.c ssl3_record.c \
|
|
ssl3_record_tls13.c
|
|
|
|
# For shared builds we need to include the sources needed in providers
|
|
# (tls_pad.c) in libssl as well.
|
|
SHARED_SOURCE[../../libssl]=tls_pad.c
|
|
|
|
SOURCE[../../providers/libcommon.a]=tls_pad.c
|
|
|
|
DEFINE[../../libssl]=$AESDEF
|
|
|