update protocol samples(bring "tlsv1_2" to clients and "any" to servers)

This commit is contained in:
Gleydson Soares
2015-11-17 20:39:05 -03:00
parent 63f7d46d00
commit 5561ddfa3c
26 changed files with 27 additions and 27 deletions

View File

@ -6,7 +6,7 @@ local ssl = require("ssl")
local params = {
mode = "client",
protocol = "tlsv1",
protocol = "tlsv1_2",
key = "../certs/serverBkey.pem",
certificate = "../certs/serverB.pem",
cafile = "../certs/rootB.pem",

View File

@ -6,7 +6,7 @@ local ssl = require("ssl")
local params = {
mode = "server",
protocol = "tlsv1",
protocol = "any",
key = "../certs/serverAkey.pem",
certificate = "../certs/serverA.pem",
cafile = "../certs/rootA.pem",