Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: net/third_party/nss/ssl/sslproto.h

Issue 9982019: Implement RFC 5764 (DTLS-SRTP). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
241 /* DTLS-SRTP cipher suites from RFC 5764 */
242 /* If you modify this, also modify MAX_DTLS_SRTP_CIPHER_SUITES in sslimpl.h */
243 #define SRTP_AES128_CM_SHA1_80 0x0001
244 #define SRTP_AES128_CM_SHA1_32 0x0002
245 #define SRTP_NULL_SHA1_80 0x0005
246 #define SRTP_NULL_SHA1_32 0x0006
247
240 #endif /* __sslproto_h_ */ 248 #endif /* __sslproto_h_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698