mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
e0c4386e7e
* Fixed PKCS12 Decoding crashes ([CVE-2024-0727]) * Fixed Excessive time spent checking invalid RSA public keys ([CVE-2023-6237]) * Fixed POLY1305 MAC implementation corrupting vector registers on PowerPC CPUs which support PowerISA 2.07 ([CVE-2023-6129]) * Fix excessive time spent in DH check / generation with large Q parameter value ([CVE-2023-5678]) Release notes can be found at https://www.openssl.org/news/openssl-3.0-notes.html. Approved by: emaste MFC after: 3 days Merge commit '9dd13e84fa8eca8f3462bd55485aa3da8c37f54a'
25 lines
1.1 KiB
Ruby
25 lines
1.1 KiB
Ruby
# markdownlint style rules for OpenSSL
|
|
# See https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
|
|
|
|
all
|
|
|
|
# Use --- and === for H1 and H2.
|
|
rule 'MD003', :style => :setext_with_atx
|
|
# Code blocks may be fenced or indented, both are OK...
|
|
# but they must be consistent throughout each file.
|
|
rule 'MD046', :style => :consistent
|
|
|
|
# Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313
|
|
exclude_rule 'MD007'
|
|
|
|
exclude_rule 'MD004' # Unordered list style TODO(fix?)
|
|
exclude_rule 'MD005' # Inconsistent indentation for list items at the same level
|
|
exclude_rule 'MD006' # Consider starting bulleted lists at the beginning of the line
|
|
exclude_rule 'MD014' # Dollar signs used before commands without showing output
|
|
exclude_rule 'MD023' # Headers must start at the beginning of the line
|
|
exclude_rule 'MD024' # Multiple headers with the same content
|
|
exclude_rule 'MD025' # Multiple top level headers in the same document
|
|
exclude_rule 'MD026' # Trailing punctuation in header
|
|
exclude_rule 'MD029' # Ordered list item prefix
|
|
exclude_rule 'MD030' # Spaces after list markers (default: 1!)
|