]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
corrected priority strings
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 6 Jun 2013 21:32:22 +0000 (23:32 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 6 Jun 2013 21:32:22 +0000 (23:32 +0200)
guile/tests/priorities.scm

index fe4f4a8a653b92637b80e42a3df3b00e54e51001..554fde76977755216c05fedd4d9a39054455347c 100644 (file)
   ;; Valid priority strings (from the manual).
   '("NONE:+VERS-TLS-ALL:+MAC-ALL:+RSA:+AES-128-CBC:+SIGN-ALL:+COMP-NULL"
     "NORMAL:-ARCFOUR-128"
-    "SECURE:-VERS-SSL3.0:+COMP-DEFLATE"
+    "SECURE128:-VERS-SSL3.0:+COMP-DEFLATE"
     "NONE:+VERS-TLS-ALL:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1"))
 
 (define %invalid-priority-strings
   ;; Invalid strings: the prefix and the suffix that leads to a parse error.
   '(("" . "THIS-DOES-NOT-WORK")
     ("NORMAL:" . "FAIL-HERE")
-    ("SECURE:-VERS-SSL3.0:" . "+FAIL-HERE")
+    ("SECURE128:-VERS-SSL3.0:" . "+FAIL-HERE")
     ("NONE:+VERS-TLS-ALL:+AES-128-CBC:"
      . "+FAIL-HERE:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1")))