OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef NET_BASE_KEYGEN_HANDLER_H_ | 5 #ifndef NET_BASE_KEYGEN_HANDLER_H_ |
6 #define NET_BASE_KEYGEN_HANDLER_H_ | 6 #define NET_BASE_KEYGEN_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
12 // This class handles keypair generation for generating client | 12 // This class handles keypair generation for generating client |
13 // certificates via the Netscape <keygen> tag. | 13 // certificates via the <keygen> tag. |
| 14 // <http://dev.w3.org/html5/spec/Overview.html#the-keygen-element> |
| 15 // <https://developer.mozilla.org/En/HTML/HTML_Extensions/KEYGEN_Tag> |
14 | 16 |
15 class KeygenHandler { | 17 class KeygenHandler { |
16 public: | 18 public: |
17 KeygenHandler(int key_size_index, const std::string& challenge); | 19 // Creates a handler that will generate a key with the given key size |
| 20 // and incorporate the |challenge| into the Netscape SPKAC structure. |
| 21 inline KeygenHandler(int key_size_in_bits, const std::string& challenge); |
| 22 |
| 23 // Actually generates the key-pair and the cert request (SPKAC), and returns |
| 24 // a base64-encoded string suitable for use as the form value of <keygen>. |
18 std::string GenKeyAndSignChallenge(); | 25 std::string GenKeyAndSignChallenge(); |
19 | 26 |
| 27 // Exposed only for unit tests. |
| 28 void set_stores_key(bool store) { stores_key_ = store;} |
| 29 |
20 private: | 30 private: |
21 int key_size_index_; | 31 int key_size_in_bits_; // key size in bits (usually 2048) |
22 std::string challenge_; | 32 std::string challenge_; // challenge string sent by server |
| 33 bool stores_key_; // should the generated key-pair be stored persistently? |
23 }; | 34 }; |
24 | 35 |
| 36 KeygenHandler::KeygenHandler(int key_size_in_bits, |
| 37 const std::string& challenge) |
| 38 : key_size_in_bits_(key_size_in_bits), |
| 39 challenge_(challenge), |
| 40 stores_key_(true) { |
| 41 } |
| 42 |
25 } // namespace net | 43 } // namespace net |
26 | 44 |
27 #endif // NET_BASE_KEYGEN_HANDLER_H_ | 45 #endif // NET_BASE_KEYGEN_HANDLER_H_ |
OLD | NEW |