[asterisk-commits] rmudgett: branch 12 r407274 - in /branches/12: ./ configs/ main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 4 12:06:48 CST 2014
Author: rmudgett
Date: Tue Feb 4 12:06:44 2014
New Revision: 407274
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=407274
Log:
tcptls.c: Made TLS handle a certificate chain file.
Thanks to Guillaume Martres for doing the necessary research to validate
the change.
(closes issue ASTERISK-17727)
Reported by: LN
Patches:
use_certificate_chain.patch (license #5864) patch uploaded by st
documente_certificate_chain.patch (license #6576) patch uploaded by Guillaume Martres
........
Merged revisions 407272 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 407273 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
branches/12/ (props changed)
branches/12/configs/sip.conf.sample
branches/12/main/tcptls.c
Propchange: branches/12/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: branches/12/configs/sip.conf.sample
URL: http://svnview.digium.com/svn/asterisk/branches/12/configs/sip.conf.sample?view=diff&rev=407274&r1=407273&r2=407274
==============================================================================
--- branches/12/configs/sip.conf.sample (original)
+++ branches/12/configs/sip.conf.sample Tue Feb 4 12:06:44 2014
@@ -539,8 +539,10 @@
;
;------------------------ TLS settings ------------------------------------------------------------
-;tlscertfile=</path/to/certificate.pem> ; Certificate file (*.pem format only) to use for TLS connections
- ; default is to look for "asterisk.pem" in current directory
+;tlscertfile=</path/to/certificate.pem> ; Certificate chain (*.pem format only) to use for TLS connections
+ ; The certificates must be sorted starting with the subject's certificate
+ ; and followed by intermediate CA certificates if applicable.
+ ; Default is to look for "asterisk.pem" in current directory
;tlsprivatekey=</path/to/private.pem> ; Private key file (*.pem format only) for TLS connections.
; If no tlsprivatekey is specified, tlscertfile is searched for
Modified: branches/12/main/tcptls.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/main/tcptls.c?view=diff&rev=407274&r1=407273&r2=407274
==============================================================================
--- branches/12/main/tcptls.c (original)
+++ branches/12/main/tcptls.c Tue Feb 4 12:06:44 2014
@@ -393,7 +393,7 @@
if (!ast_strlen_zero(cfg->certfile)) {
char *tmpprivate = ast_strlen_zero(cfg->pvtfile) ? cfg->certfile : cfg->pvtfile;
- if (SSL_CTX_use_certificate_file(cfg->ssl_ctx, cfg->certfile, SSL_FILETYPE_PEM) == 0) {
+ if (SSL_CTX_use_certificate_chain_file(cfg->ssl_ctx, cfg->certfile) == 0) {
if (!client) {
/* Clients don't need a certificate, but if its setup we can use it */
ast_verb(0, "SSL error loading cert file. <%s>\n", cfg->certfile);
More information about the asterisk-commits
mailing list