mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-14 07:20:52 +00:00
Fix PSK invocation: GnuTLS prompting
When given a PSK key but no username, gnutls-cli prompts for a password. Prevent that by passing --pskusername with the same identity that ssl_server2 uses by default. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
7fa055b57b
commit
f12359ded4
@ -502,7 +502,7 @@ adapt_cmd_for_psk () {
|
||||
case "$2" in
|
||||
*openssl*s_server*) s='-psk abc123 -nocert';;
|
||||
*openssl*) s='-psk abc123';;
|
||||
*gnutls-*) s='--pskkey=abc123';;
|
||||
*gnutls-*) s='--pskusername=Client_identity --pskkey=abc123';;
|
||||
*) s='psk=abc123';;
|
||||
esac
|
||||
eval $1='"$2 $s"'
|
||||
|
Loading…
x
Reference in New Issue
Block a user