]> code.citadel.org Git - citadel.git/blob - citadel/serv_crypto.h
* Genericized the Citadel API for TLS-enabling protocols
[citadel.git] / citadel / serv_crypto.h
1 /* $Id$ */
2
3 /* Shared Diffie-Hellman parameters */
4 #define DH_P            "1A74527AEE4EE2568E85D4FB2E65E18C9394B9C80C42507D7A6A0DBE9A9A54B05A9A96800C34C7AA5297095B69C88901EEFD127F969DCA26A54C0E0B5C5473EBAEB00957D2633ECAE3835775425DE66C0DE6D024DBB17445E06E6B0C78415E589B8814F08531D02FD43778451E7685541079CFFB79EF0D26EFEEBBB69D1E80383"
5 #define DH_G            "2"
6 #define DH_L            1024
7 #define CIT_CIPHERS     "ALL:RC4+RSA:+SSLv2:@STRENGTH"  /* see ciphers(1) */
8
9 #ifdef HAVE_OPENSSL
10 void init_ssl(void);
11 void client_write_ssl (char *buf, int nbytes);
12 int client_read_ssl (char *buf, int bytes, int timeout);
13 void cmd_stls(char *params);
14 void cmd_gtls(char *params);
15 void endtls(void);
16 void ssl_lock(int mode, int n, const char *file, int line);
17 void CtdlStartTLS(char *ok_response, char *nosup_response, char *error_response);
18 extern SSL_CTX *ssl_ctx;  
19
20 #endif