Mercurial > prosody-hg
comparison core/certmanager.lua @ 5746:3137751751b4
Merge 0.9->trunk
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Sat, 13 Jul 2013 13:17:53 +0100 |
| parents | 5554029d759b a1b0cfebeeba |
| children | bd0ff8ae98a8 |
comparison
equal
deleted
inserted
replaced
| 5744:253dfea0e3f6 | 5746:3137751751b4 |
|---|---|
| 36 protocol = "sslv23"; | 36 protocol = "sslv23"; |
| 37 verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "none"; | 37 verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "none"; |
| 38 options = { "no_sslv2", luasec_has_noticket and "no_ticket" or nil }; | 38 options = { "no_sslv2", luasec_has_noticket and "no_ticket" or nil }; |
| 39 verifyext = { "lsec_continue", "lsec_ignore_purpose" }; | 39 verifyext = { "lsec_continue", "lsec_ignore_purpose" }; |
| 40 curve = "secp384r1"; | 40 curve = "secp384r1"; |
| 41 ciphers = "HIGH:!DSS:!aNULL@STRENGTH"; | |
| 41 } | 42 } |
| 42 local path_options = { -- These we pass through resolve_path() | 43 local path_options = { -- These we pass through resolve_path() |
| 43 key = true, certificate = true, cafile = true, capath = true | 44 key = true, certificate = true, cafile = true, capath = true |
| 44 } | 45 } |
| 45 | 46 |
