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

Unified Diff: net/ssl/ssl_private_key.h

Issue 1178193002: Sign CertificateVerify messages on a background thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more mac build fix, this is blind while mac checkout syncs Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/ssl/ssl_platform_key_win.cc ('k') | net/ssl/threaded_ssl_private_key.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_private_key.h
diff --git a/net/ssl/ssl_private_key.h b/net/ssl/ssl_private_key.h
new file mode 100644
index 0000000000000000000000000000000000000000..a2e5c35c5e3a8b528bd839d58357bf3d3af1297b
--- /dev/null
+++ b/net/ssl/ssl_private_key.h
@@ -0,0 +1,71 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_SSL_SSL_PRIVATE_KEY_H_
+#define NET_SSL_SSL_PRIVATE_KEY_H_
+
+#include <stdint.h>
+
+#include <vector>
+
+#include "base/callback_forward.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/strings/string_piece.h"
+#include "net/base/net_errors.h"
+
+namespace net {
+
+// An interface for a private key for use with SSL client authentication.
+class SSLPrivateKey {
+ public:
+ using SignCallback = base::Callback<void(Error, const std::vector<uint8_t>&)>;
+
+ enum class Type {
+ RSA,
+ ECDSA,
+ };
+
+ enum class Hash {
+ MD5_SHA1,
+ SHA1,
+ SHA256,
+ SHA384,
+ SHA512,
+ };
+
+ SSLPrivateKey() {}
+ virtual ~SSLPrivateKey() {}
+
+ // Returns whether the key is an RSA key or an ECDSA key. Although the signing
+ // interface is type-agnositic and type tags in interfaces are discouraged,
+ // TLS has key-specific logic in selecting which hashes to sign. Exposing the
+ // key type avoids replicating BoringSSL's TLS-specific logic in SSLPrivateKey
+ // implementations and complicating the interface between Chromium and
+ // BoringSSL.
+ virtual Type GetType() = 0;
+
+ // Returns true if the key supports signing hashes of type |hash|.
+ virtual bool SupportsHash(Hash hash) = 0;
+
+ // Returns the maximum size of a signature, in bytes. For an RSA key, this
+ // must be the size of the modulus.
+ virtual size_t GetMaxSignatureLengthInBytes() = 0;
+
+ // Asynchronously signs an |input| which was computed with the hash |hash|. On
+ // completion, it calls |callback| with the signature or an error code if the
+ // operation failed. For an RSA key, the signature is a PKCS#1 signature. The
+ // SSLPrivateKey implementation is responsible for prepending the DigestInfo
+ // prefix and adding PKCS#1 padding.
+ virtual void SignDigest(Hash hash,
+ const base::StringPiece& input,
+ const SignCallback& callback) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SSLPrivateKey);
+};
+
+} // namespace net
+
+#endif // NET_SSL_SSL_PRIVATE_KEY_H_
« no previous file with comments | « net/ssl/ssl_platform_key_win.cc ('k') | net/ssl/threaded_ssl_private_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698