OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 #include "net/base/keygen_handler.h" |
| 6 |
| 7 #include <string> |
| 8 |
| 9 #include "base/base64.h" |
| 10 #include "base/logging.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 |
| 13 namespace net { |
| 14 |
| 15 namespace { |
| 16 |
| 17 TEST(KeygenHandlerTest, SmokeTest) { |
| 18 KeygenHandler handler(2048, "some challenge"); |
| 19 handler.set_stores_key(false); // Don't leave the key-pair behind |
| 20 std::string result = handler.GenKeyAndSignChallenge(); |
| 21 LOG(INFO) << "KeygenHandler produced: " << result; |
| 22 ASSERT_GT(result.length(), 0U); |
| 23 |
| 24 // Verify it's valid base64: |
| 25 std::string spkac; |
| 26 ASSERT_TRUE(base::Base64Decode(result, &spkac)); |
| 27 // In lieu of actually parsing and validating the DER data, |
| 28 // just check that it exists and has a reasonable length. |
| 29 // (It's almost always 590 bytes, but the DER encoding of the random key |
| 30 // and signature could sometimes be a few bytes different.) |
| 31 ASSERT_GE(spkac.length(), 580U); |
| 32 ASSERT_LE(spkac.length(), 600U); |
| 33 |
| 34 // NOTE: |
| 35 // The value of |result| can be validated by prefixing 'SPKAC=' to it |
| 36 // and piping it through |
| 37 // openssl spkac -verify |
| 38 // whose output should look like: |
| 39 // Netscape SPKI: |
| 40 // Public Key Algorithm: rsaEncryption |
| 41 // RSA Public Key: (2048 bit) |
| 42 // Modulus (2048 bit): |
| 43 // 00:b6:cc:14:c9:43:b5:2d:51:65:7e:11:8b:80:9e: ..... |
| 44 // Exponent: 65537 (0x10001) |
| 45 // Challenge String: some challenge |
| 46 // Signature Algorithm: md5WithRSAEncryption |
| 47 // 92:f3:cc:ff:0b:d3:d0:4a:3a:4c:ba:ff:d6:38:7f:a5:4b:b5: ..... |
| 48 // Signature OK |
| 49 // |
| 50 // The value of |spkac| can be ASN.1-parsed with: |
| 51 // openssl asn1parse -inform DER |
| 52 } |
| 53 |
| 54 } // namespace |
| 55 |
| 56 } // namespace net |
OLD | NEW |