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

Side by Side Diff: net/socket/nss_ssl_util.h

Issue 75663004: net: boost AES-GCM ciphers if the machine has AES-NI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with master Created 7 years, 1 month 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is only included in ssl_client_socket_nss.cc and 5 // This file is only included in ssl_client_socket_nss.cc and
6 // ssl_server_socket_nss.cc to share common functions of NSS. 6 // ssl_server_socket_nss.cc to share common functions of NSS.
7 7
8 #ifndef NET_SOCKET_NSS_SSL_UTIL_H_ 8 #ifndef NET_SOCKET_NSS_SSL_UTIL_H_
9 #define NET_SOCKET_NSS_SSL_UTIL_H_ 9 #define NET_SOCKET_NSS_SSL_UTIL_H_
10 10
11 #include <prerror.h> 11 #include <prerror.h>
12 12
13 #include "net/base/net_export.h" 13 #include "net/base/net_export.h"
14 14
15 namespace net { 15 namespace net {
16 16
17 class BoundNetLog; 17 class BoundNetLog;
18 18
19 // Initalize NSS SSL library. 19 // Initalize NSS SSL library.
20 NET_EXPORT void EnsureNSSSSLInit(); 20 NET_EXPORT void EnsureNSSSSLInit();
21 21
22 // Log a failed NSS funcion call. 22 // Log a failed NSS funcion call.
23 void LogFailedNSSFunction(const BoundNetLog& net_log, 23 void LogFailedNSSFunction(const BoundNetLog& net_log,
24 const char* function, 24 const char* function,
25 const char* param); 25 const char* param);
26 26
27 // Map network error code to NSS error code. 27 // Map network error code to NSS error code.
28 PRErrorCode MapErrorToNSS(int result); 28 PRErrorCode MapErrorToNSS(int result);
29 29
30 // GetNSSCipherOrder either returns NULL, to indicate that no special cipher
31 // order is required, or it returns a pointer to an array of cipher suite ids.
32 // On return, |*out_length| is set to the length of the returned array.
33 //
34 // The array, if not NULL, indicates the preferred order of cipher suites but
35 // inclusion in the array does not mean that the given cipher suite should
36 // necessarily be enabled.
37 const uint16* GetNSSCipherOrder(size_t* out_length);
wtc 2013/11/27 14:50:13 Compilation failed because uint16 is not defined.
agl 2013/11/27 16:08:33 Thanks. I had missed this CQ failure. codereview
38
30 // Map NSS error code to network error code. 39 // Map NSS error code to network error code.
31 int MapNSSError(PRErrorCode err); 40 int MapNSSError(PRErrorCode err);
32 41
33 } // namespace net 42 } // namespace net
34 43
35 #endif // NET_SOCKET_NSS_SSL_UTIL_H_ 44 #endif // NET_SOCKET_NSS_SSL_UTIL_H_
OLDNEW
« no previous file with comments | « base/cpu.cc ('k') | net/socket/nss_ssl_util.cc » ('j') | net/socket/nss_ssl_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698