| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "net/quic/test_tools/crypto_test_utils.h" | 5 #include "net/quic/test_tools/crypto_test_utils.h" |
| 6 | 6 |
| 7 #include <keyhi.h> | 7 #include <keyhi.h> |
| 8 #include <pk11pub.h> | 8 #include <pk11pub.h> |
| 9 #include <sechash.h> | 9 #include <sechash.h> |
| 10 | 10 |
| 11 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "crypto/ec_private_key.h" | 13 #include "crypto/ec_private_key.h" |
| 14 #include "net/quic/crypto/channel_id.h" | 14 #include "net/quic/crypto/channel_id.h" |
| 15 | 15 |
| 16 using base::StringPiece; | 16 using base::StringPiece; |
| 17 using std::string; | 17 using std::string; |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 | 20 |
| 21 namespace test { | 21 namespace test { |
| 22 | 22 |
| 23 // TODO(rtenneti): Implement NSS support ChannelIDSigner. Convert Sign() to be | 23 // TODO(rtenneti): Implement NSS support ChannelIDSigner. Convert Sign() to be |
| 24 // asynchronous using completion callback. After porting TestChannelIDSigner, | 24 // asynchronous using completion callback. After porting TestChannelIDSigner, |
| 25 // implement real ChannelIDSigner. | 25 // implement real ChannelIDSigner. |
| 26 class TestChannelIDSigner : public ChannelIDSigner { | 26 class TestChannelIDSigner : public ChannelIDSigner { |
| 27 public: | 27 public: |
| 28 virtual ~TestChannelIDSigner() { | 28 virtual ~TestChannelIDSigner() OVERRIDE { |
| 29 STLDeleteValues(&hostname_to_key_); | 29 STLDeleteValues(&hostname_to_key_); |
| 30 } | 30 } |
| 31 | 31 |
| 32 // ChannelIDSigner implementation. | 32 // ChannelIDSigner implementation. |
| 33 | 33 |
| 34 virtual bool Sign(const string& hostname, | 34 virtual bool Sign(const string& hostname, |
| 35 StringPiece signed_data, | 35 StringPiece signed_data, |
| 36 string* out_key, | 36 string* out_key, |
| 37 string* out_signature) OVERRIDE { | 37 string* out_signature) OVERRIDE { |
| 38 crypto::ECPrivateKey* ecdsa_keypair = HostnameToKey(hostname); | 38 crypto::ECPrivateKey* ecdsa_keypair = HostnameToKey(hostname); |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 }; | 129 }; |
| 130 | 130 |
| 131 // static | 131 // static |
| 132 ChannelIDSigner* CryptoTestUtils::ChannelIDSignerForTesting() { | 132 ChannelIDSigner* CryptoTestUtils::ChannelIDSignerForTesting() { |
| 133 return new TestChannelIDSigner(); | 133 return new TestChannelIDSigner(); |
| 134 } | 134 } |
| 135 | 135 |
| 136 } // namespace test | 136 } // namespace test |
| 137 | 137 |
| 138 } // namespace net | 138 } // namespace net |
| OLD | NEW |