Experimental changes to the default theme. Gradient
[citadel.git] / citadel / serv_crypto.h
1 /* $Id$ */
2
3 /*
4  * Number of days for which self-signed certs are valid.
5  */
6 #define SIGN_DAYS       3650    /* Ten years */
7
8 /* Shared Diffie-Hellman parameters */
9 #define DH_P            "1A74527AEE4EE2568E85D4FB2E65E18C9394B9C80C42507D7A6A0DBE9A9A54B05A9A96800C34C7AA5297095B69C88901EEFD127F969DCA26A54C0E0B5C5473EBAEB00957D2633ECAE3835775425DE66C0DE6D024DBB17445E06E6B0C78415E589B8814F08531D02FD43778451E7685541079CFFB79EF0D26EFEEBBB69D1E80383"
10 #define DH_G            "2"
11 #define DH_L            1024
12 #define CIT_CIPHERS     "ALL:RC4+RSA:+SSLv2:+TLSv1:!MD5:@STRENGTH"      /* see ciphers(1) */
13
14 #ifdef HAVE_OPENSSL
15 void destruct_ssl(void);
16 void init_ssl(void);
17 void client_write_ssl (char *buf, int nbytes);
18 int client_read_ssl (char *buf, int bytes, int timeout);
19 void cmd_stls(char *params);
20 void cmd_gtls(char *params);
21 void endtls(void);
22 void ssl_lock(int mode, int n, const char *file, int line);
23 void CtdlStartTLS(char *ok_response, char *nosup_response, char *error_response);
24 extern SSL_CTX *ssl_ctx;  
25
26 #endif