mirror of https://github.com/openssl/openssl.git
Rename MAC files for autogeneration of param parsers
Reviewed-by: Paul Yang <paulyang.inf@gmail.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/28142)
This commit is contained in:
parent
b508df7875
commit
4761aea3fe
|
@ -112,6 +112,12 @@ providers/implementations/ciphers/cipher_chacha20_poly1305.c
|
||||||
providers/implementations/digests/blake2_prov.c
|
providers/implementations/digests/blake2_prov.c
|
||||||
providers/implementations/digests/digestcommon.c
|
providers/implementations/digests/digestcommon.c
|
||||||
providers/implementations/digests/sha3_prov.c
|
providers/implementations/digests/sha3_prov.c
|
||||||
|
providers/implementations/macs/cmac_prov.c
|
||||||
|
providers/implementations/macs/gmac_prov.c
|
||||||
|
providers/implementations/macs/hmac_prov.c
|
||||||
|
providers/implementations/macs/kmac_prov.c
|
||||||
|
providers/implementations/macs/poly1305_prov.c
|
||||||
|
providers/implementations/macs/siphash_prov.c
|
||||||
|
|
||||||
# error code files
|
# error code files
|
||||||
/crypto/err/openssl.txt.old
|
/crypto/err/openssl.txt.old
|
||||||
|
|
24
build.info
24
build.info
|
@ -75,6 +75,12 @@ DEPEND[]=include/openssl/asn1.h \
|
||||||
providers/implementations/digests/blake2_prov.c \
|
providers/implementations/digests/blake2_prov.c \
|
||||||
providers/implementations/digests/digestcommon.c \
|
providers/implementations/digests/digestcommon.c \
|
||||||
providers/implementations/digests/sha3_prov.c
|
providers/implementations/digests/sha3_prov.c
|
||||||
|
providers/implementations/macs/gmac_prov.c \
|
||||||
|
providers/implementations/macs/cmac_prov.c \
|
||||||
|
providers/implementations/macs/hmac_prov.c \
|
||||||
|
providers/implementations/macs/kmac_prov.c \
|
||||||
|
providers/implementations/macs/poly1305_prov.c \
|
||||||
|
providers/implementations/macs/siphash_prov.c
|
||||||
|
|
||||||
GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in
|
GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in
|
||||||
GENERATE[include/openssl/asn1t.h]=include/openssl/asn1t.h.in
|
GENERATE[include/openssl/asn1t.h]=include/openssl/asn1t.h.in
|
||||||
|
@ -136,6 +142,12 @@ DEPEND[providers/implementations/kdfs/argon2.c \
|
||||||
providers/implementations/digests/blake2_prov.c \
|
providers/implementations/digests/blake2_prov.c \
|
||||||
providers/implementations/digests/digestcommon.c \
|
providers/implementations/digests/digestcommon.c \
|
||||||
providers/implementations/digests/sha3_prov.c \
|
providers/implementations/digests/sha3_prov.c \
|
||||||
|
providers/implementations/macs/cmac_prov.c \
|
||||||
|
providers/implementations/macs/gmac_prov.c \
|
||||||
|
providers/implementations/macs/hmac_prov.c \
|
||||||
|
providers/implementations/macs/kmac_prov.c \
|
||||||
|
providers/implementations/macs/poly1305_prov.c \
|
||||||
|
providers/implementations/macs/siphash_prov.c \
|
||||||
include/openssl/core_names.h]=util/perl|OpenSSL/paramnames.pm
|
include/openssl/core_names.h]=util/perl|OpenSSL/paramnames.pm
|
||||||
GENERATE[providers/implementations/kdfs/argon2.c]=\
|
GENERATE[providers/implementations/kdfs/argon2.c]=\
|
||||||
providers/implementations/kdfs/argon2.c.in
|
providers/implementations/kdfs/argon2.c.in
|
||||||
|
@ -191,6 +203,18 @@ GENERATE[providers/implementations/digests/digestcommon.c]=\
|
||||||
providers/implementations/digests/digestcommon.c.in
|
providers/implementations/digests/digestcommon.c.in
|
||||||
GENERATE[providers/implementations/digests/sha3_prov.c]=\
|
GENERATE[providers/implementations/digests/sha3_prov.c]=\
|
||||||
providers/implementations/digests/sha3_prov.c.in
|
providers/implementations/digests/sha3_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/cmac_prov.c]=\
|
||||||
|
providers/implementations/macs/cmac_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/gmac_prov.c]=\
|
||||||
|
providers/implementations/macs/gmac_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/hmac_prov.c]=\
|
||||||
|
providers/implementations/macs/hmac_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/kmac_prov.c]=\
|
||||||
|
providers/implementations/macs/kmac_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/poly1305_prov.c]=\
|
||||||
|
providers/implementations/macs/poly1305_prov.c.in
|
||||||
|
GENERATE[providers/implementations/macs/siphash_prov.c]=\
|
||||||
|
providers/implementations/macs/siphash_prov.c.in
|
||||||
GENERATE[include/openssl/core_names.h]=include/openssl/core_names.h.in
|
GENERATE[include/openssl/core_names.h]=include/openssl/core_names.h.in
|
||||||
|
|
||||||
IF[{- defined $target{shared_defflag} -}]
|
IF[{- defined $target{shared_defflag} -}]
|
||||||
|
|
Loading…
Reference in New Issue