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