OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/stl_util.h" | 6 #include "base/stl_util.h" |
7 #include "content/child/webcrypto/algorithm_dispatch.h" | 7 #include "components/webcrypto/algorithm_dispatch.h" |
8 #include "content/child/webcrypto/crypto_data.h" | 8 #include "components/webcrypto/crypto_data.h" |
9 #include "content/child/webcrypto/jwk.h" | 9 #include "components/webcrypto/jwk.h" |
10 #include "content/child/webcrypto/status.h" | 10 #include "components/webcrypto/status.h" |
11 #include "content/child/webcrypto/test/test_helpers.h" | 11 #include "components/webcrypto/test/test_helpers.h" |
12 #include "content/child/webcrypto/webcrypto_util.h" | 12 #include "components/webcrypto/webcrypto_util.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h" | 14 #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h" |
15 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" | 15 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" |
16 | 16 |
17 namespace content { | |
18 | |
19 namespace webcrypto { | 17 namespace webcrypto { |
20 | 18 |
21 namespace { | 19 namespace { |
22 | 20 |
23 // Creates an RSA-OAEP algorithm | 21 // Creates an RSA-OAEP algorithm |
24 blink::WebCryptoAlgorithm CreateRsaOaepAlgorithm( | 22 blink::WebCryptoAlgorithm CreateRsaOaepAlgorithm( |
25 const std::vector<uint8_t>& label) { | 23 const std::vector<uint8_t>& label) { |
26 return blink::WebCryptoAlgorithm::adoptParamsAndCreate( | 24 return blink::WebCryptoAlgorithm::adoptParamsAndCreate( |
27 blink::WebCryptoAlgorithmIdRsaOaep, | 25 blink::WebCryptoAlgorithmIdRsaOaep, |
28 new blink::WebCryptoRsaOaepParams(!label.empty(), vector_as_array(&label), | 26 new blink::WebCryptoRsaOaepParams(!label.empty(), vector_as_array(&label), |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 EXPECT_TRUE(public_key2.extractable()); | 558 EXPECT_TRUE(public_key2.extractable()); |
561 EXPECT_EQ(import_algorithm.id(), public_key2.algorithm().id()); | 559 EXPECT_EQ(import_algorithm.id(), public_key2.algorithm().id()); |
562 | 560 |
563 // TODO(eroman): Export the SPKI and verify matches. | 561 // TODO(eroman): Export the SPKI and verify matches. |
564 } | 562 } |
565 } | 563 } |
566 | 564 |
567 } // namespace | 565 } // namespace |
568 | 566 |
569 } // namespace webcrypto | 567 } // namespace webcrypto |
570 | |
571 } // namespace content | |
OLD | NEW |