-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Balazs Scheidler <[email protected]>
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Add `fingerprint-alg()` option to `tls()` blocks: SSL peers can be validated | ||
using the `trusted-keys()` option that takes a list of trusted public key | ||
fingerprints. This was using the `sha1` algorithm, which is not considered | ||
safe anymore. This option can be used to customize the message digest | ||
algorithm and accepts any known algorithms supported by OpenSSL. As of | ||
OpenSSL 3.0.10, the followings are supported (OpenSSL 3.0.10): | ||
|
||
Message Digest commands (see the `dgst' command for more details) | ||
blake2b512 blake2s256 md4 md5 | ||
rmd160 sha1 sha224 sha256 | ||
sha3-224 sha3-256 sha3-384 sha3-512 | ||
sha384 sha512 sha512-224 sha512-256 | ||
shake128 shake256 sm3 |