]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Add required priorities
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 28 Feb 2014 18:31:16 +0000 (19:31 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 28 Feb 2014 18:31:16 +0000 (19:31 +0100)
src/serv-args.def

index 47528a150de41d0baa679ac9f017ac74a7aa17ce..b937ead4bf0fb22d15f1f902c386da2c6e873df8 100644 (file)
@@ -394,7 +394,7 @@ gpg -a --export-secret-keys 5D1D14D8 > openpgp-server-key.txt
 Let's start the server with support for OpenPGP credentials:
 
 @example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+CTYPE-OPENPGP \
             --pgpkeyfile openpgp-server-key.txt \
             --pgpcertfile openpgp-server.txt
 @end example
@@ -404,7 +404,7 @@ an SRP password file created with @code{srptool}.
 To start the server with SRP support:
 
 @example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+SRP-RSA:+SRP \
             --srppasswdconf srp-tpasswd.conf \
             --srppasswd srp-passwd.txt
 @end example
@@ -413,7 +413,7 @@ Let's also start a server with support for PSK. This would require
 a password file created with @code{psktool}.
 
 @example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+ECDHE-PSK:+PSK \
             --pskpasswd psk-passwd.txt
 @end example
 
@@ -421,7 +421,7 @@ Finally, we start the server with all the earlier parameters and you
 get this command:
 
 @example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+PSK:+SRP:+CTYPE-OPENPGP \
             --x509cafile x509-ca.pem \
             --x509keyfile x509-server-key.pem \
             --x509certfile x509-server.pem \