| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Various and sundry protocol constants. DON'T CHANGE THESE. These values | 2 * Various and sundry protocol constants. DON'T CHANGE THESE. These values |
| 3 * are mostly defined by the SSL2, SSL3, or TLS protocol specifications. | 3 * are mostly defined by the SSL2, SSL3, or TLS protocol specifications. |
| 4 * Cipher kinds and ciphersuites are part of the public API. | 4 * Cipher kinds and ciphersuites are part of the public API. |
| 5 * | 5 * |
| 6 * ***** BEGIN LICENSE BLOCK ***** | 6 * ***** BEGIN LICENSE BLOCK ***** |
| 7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 8 * | 8 * |
| 9 * The contents of this file are subject to the Mozilla Public License Version | 9 * The contents of this file are subject to the Mozilla Public License Version |
| 10 * 1.1 (the "License"); you may not use this file except in compliance with | 10 * 1.1 (the "License"); you may not use this file except in compliance with |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 #define TLS_ECDH_anon_WITH_AES_256_CBC_SHA 0xC019 | 230 #define TLS_ECDH_anon_WITH_AES_256_CBC_SHA 0xC019 |
| 231 | 231 |
| 232 /* Netscape "experimental" cipher suites. */ | 232 /* Netscape "experimental" cipher suites. */ |
| 233 #define SSL_RSA_OLDFIPS_WITH_3DES_EDE_CBC_SHA 0xffe0 | 233 #define SSL_RSA_OLDFIPS_WITH_3DES_EDE_CBC_SHA 0xffe0 |
| 234 #define SSL_RSA_OLDFIPS_WITH_DES_CBC_SHA 0xffe1 | 234 #define SSL_RSA_OLDFIPS_WITH_DES_CBC_SHA 0xffe1 |
| 235 | 235 |
| 236 /* New non-experimental openly spec'ed versions of those cipher suites. */ | 236 /* New non-experimental openly spec'ed versions of those cipher suites. */ |
| 237 #define SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA 0xfeff | 237 #define SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA 0xfeff |
| 238 #define SSL_RSA_FIPS_WITH_DES_CBC_SHA 0xfefe | 238 #define SSL_RSA_FIPS_WITH_DES_CBC_SHA 0xfefe |
| 239 | 239 |
| 240 /* DTLS-SRTP cipher suites from RFC 5764 */ |
| 241 /* If you modify this, also modify MAX_DTLS_SRTP_CIPHER_SUITES in sslimpl.h */ |
| 242 #define SRTP_AES128_CM_SHA1_80 0x0001 |
| 243 #define SRTP_AES128_CM_SHA1_32 0x0002 |
| 244 #define SRTP_NULL_SHA1_80 0x0005 |
| 245 #define SRTP_NULL_SHA1_32 0x0006 |
| 246 |
| 240 #endif /* __sslproto_h_ */ | 247 #endif /* __sslproto_h_ */ |
| OLD | NEW |