comparison src/mail/ngx_mail_ssl_module.c @ 3196:b7e68ee09e0c

use only strong ciphers by default
author Igor Sysoev <igor@sysoev.ru>
date Wed, 07 Oct 2009 14:46:13 +0000
parents dd2ae3872634
children dd1570b6f237
comparison
equal deleted inserted replaced
3195:b495a56f1f24 3196:b7e68ee09e0c
7 #include <ngx_config.h> 7 #include <ngx_config.h>
8 #include <ngx_core.h> 8 #include <ngx_core.h>
9 #include <ngx_mail.h> 9 #include <ngx_mail.h>
10 10
11 11
12 #define NGX_DEFAULT_CIPHERS "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM" 12 #define NGX_DEFAULT_CIPHERS "HIGH:!ADH:!MD5"
13 13
14 14
15 static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf); 15 static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf);
16 static char *ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child); 16 static char *ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child);
17 17