-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sample for callback SASL_CB_SERVER_CHANNEL_BINDING
With the callback SASL_CB_SERVER_CHANNEL_BINDING a server can change the channel binding data to the desired channel binding type of the client. sample/client.c Select the option -d or -D to use the channel binding type "tls-server-end-point". Or select the option -c or -C to use the channel binding type "tls-unique". Options -C or -D force client and server to use channel binding. sample/server.c select option -c to activate channel binding type "tls-unique". Option -C forces clients to use channel binding. Via callback "my_select_binding" the server changes the binding type to "tls-server-end-point" if required. Note that client/server must use the binding type: - "tls-exporter" for TLS 1.3 - "tls-unique" for TLS 1.2 - "tls-server-end-point" works for TLS 1.2 and 1.3 Issue #823 Signed-off-by: Guido Kiener <[email protected]>
- Loading branch information
1 parent
175682f
commit 019ebb4
Showing
2 changed files
with
92 additions
and
18 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
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