mirror of https://github.com/openssl/openssl.git
Add Configurable "lms" option
This option will be used by the base code for enabling Leighton-Micali Signatures (LMS) Reviewed-by: Hugo Landau <hlandau@devever.net> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Paul Dale <ppzgs1@gmail.com> (Merged from https://github.com/openssl/openssl/pull/25598)
This commit is contained in:
parent
6ab286f9eb
commit
bfffa8bc02
|
@ -481,6 +481,7 @@ my @disablables = (
|
|||
"jitter",
|
||||
"ktls",
|
||||
"legacy",
|
||||
"lms",
|
||||
"loadereng",
|
||||
"makedepend",
|
||||
"md2",
|
||||
|
@ -621,7 +622,7 @@ my @disable_cascades = (
|
|||
"des", "dgram", "dh", "dsa",
|
||||
"ec", "engine",
|
||||
"filenames",
|
||||
"idea", "ktls",
|
||||
"idea", "ktls", "lms",
|
||||
"md4", "multiblock", "nextprotoneg",
|
||||
"ocsp", "ocb", "poly1305", "psk",
|
||||
"rc2", "rc4", "rmd160",
|
||||
|
|
|
@ -881,6 +881,12 @@ Don't build the legacy provider.
|
|||
|
||||
Disabling this also disables the legacy algorithms: MD2 (already disabled by default).
|
||||
|
||||
### no-lms
|
||||
|
||||
Disable Leighton-Micali Signatures (LMS) support.
|
||||
Support is currently limited to verification only as per
|
||||
[SP 800-208](https://csrc.nist.gov/pubs/sp/800/208/final).
|
||||
|
||||
### no-makedepend
|
||||
|
||||
Don't generate dependencies.
|
||||
|
|
Loading…
Reference in New Issue