[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef REMOTING_BASE_RSA_KEY_PAIR_H_ |
| 6 | #define REMOTING_BASE_RSA_KEY_PAIR_H_ |
| 7 | |
dcheng | 0765c49 | 2016-04-06 22:41:53 | [diff] [blame] | 8 | #include <memory> |
[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 9 | #include <string> |
| 10 | |
avi | 5a080f01 | 2015-12-22 23:15:43 | [diff] [blame] | 11 | #include "base/macros.h" |
[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 12 | #include "base/memory/ref_counted.h" |
[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 13 | |
| 14 | namespace crypto { |
| 15 | class RSAPrivateKey; |
| 16 | } // namespace crypto |
| 17 | |
| 18 | namespace remoting { |
| 19 | |
| 20 | class RsaKeyPair : public base::RefCountedThreadSafe<RsaKeyPair> { |
| 21 | public: |
| 22 | // Generates a new (random) private key. |
| 23 | static scoped_refptr<RsaKeyPair> Generate(); |
| 24 | |
| 25 | // Loads a private key from a base64-encoded string. Returns true on success. |
| 26 | static scoped_refptr<RsaKeyPair> FromString(const std::string& key_base64); |
| 27 | |
| 28 | // Returns a base64 encoded string representing the private key. |
| 29 | std::string ToString() const; |
| 30 | |
| 31 | // Generates a DER-encoded self-signed certificate using the key pair. Returns |
| 32 | // empty string if cert generation fails (e.g. it may happen when the system |
| 33 | // clock is off). |
| 34 | std::string GenerateCertificate() const; |
| 35 | |
| 36 | // Returns a base64-encoded string representing the public key. |
| 37 | std::string GetPublicKey() const; |
| 38 | |
| 39 | // Returns a base64-encoded signature for the message. |
| 40 | std::string SignMessage(const std::string& message) const; |
| 41 | |
| 42 | crypto::RSAPrivateKey* private_key() { return key_.get(); } |
| 43 | |
| 44 | private: |
| 45 | friend class base::RefCountedThreadSafe<RsaKeyPair>; |
dcheng | 0765c49 | 2016-04-06 22:41:53 | [diff] [blame] | 46 | RsaKeyPair(std::unique_ptr<crypto::RSAPrivateKey> key); |
[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 47 | virtual ~RsaKeyPair(); |
| 48 | |
dcheng | 0765c49 | 2016-04-06 22:41:53 | [diff] [blame] | 49 | std::unique_ptr<crypto::RSAPrivateKey> key_; |
[email protected] | 8f1504b | 2013-03-07 13:43:10 | [diff] [blame] | 50 | |
| 51 | DISALLOW_COPY_AND_ASSIGN(RsaKeyPair); |
| 52 | }; |
| 53 | |
| 54 | } // namespace remoting |
| 55 | |
| 56 | #endif // REMOTING_BASE_RSA_KEY_PAIR_H_ |