summaryrefslogtreecommitdiffstats
path: root/base/crypto
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-23 09:54:15 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-23 09:54:15 +0000
commitf61c397ae7c8d07762b02d6578928163e2a8eca0 (patch)
tree3c029791e1a36b1218b5378c5e7b579d84023755 /base/crypto
parent88616f47602e8a2a16c65ca0a59444e0ce550772 (diff)
downloadchromium_src-f61c397ae7c8d07762b02d6578928163e2a8eca0.zip
chromium_src-f61c397ae7c8d07762b02d6578928163e2a8eca0.tar.gz
chromium_src-f61c397ae7c8d07762b02d6578928163e2a8eca0.tar.bz2
Defines SSLServerSocket and implements SSLServerSocketNSS
Defines a SSLServerSocket interface. Implement this interface using NSS as SSLServerSocketNSS. This is the first version of the code. It disables several functions of NSS like caching, session ticket, reneogotiation, etc. This is implemented to suit the needs of Chromoting. Additional features of this socket will be added when necessary. BUG=None TEST=None Review URL: http://codereview.chromium.org/5746003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70041 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/crypto')
-rw-r--r--base/crypto/rsa_private_key.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/crypto/rsa_private_key.h b/base/crypto/rsa_private_key.h
index 879c1f4..bac4250 100644
--- a/base/crypto/rsa_private_key.h
+++ b/base/crypto/rsa_private_key.h
@@ -165,6 +165,7 @@ class PrivateKeyInfoCodec {
// Encapsulates an RSA private key. Can be used to generate new keys, export
// keys to other formats, or to extract a public key.
+// TODO(hclam): This class should be ref-counted so it can be reused easily.
class RSAPrivateKey {
public:
// Create a new random instance. Can return NULL if initialization fails.