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 { | 17 namespace components { |
18 | 18 |
19 namespace webcrypto { | 19 namespace webcrypto { |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 // Creates an RSA-OAEP algorithm | 23 // Creates an RSA-OAEP algorithm |
24 blink::WebCryptoAlgorithm CreateRsaOaepAlgorithm( | 24 blink::WebCryptoAlgorithm CreateRsaOaepAlgorithm( |
25 const std::vector<uint8_t>& label) { | 25 const std::vector<uint8_t>& label) { |
26 return blink::WebCryptoAlgorithm::adoptParamsAndCreate( | 26 return blink::WebCryptoAlgorithm::adoptParamsAndCreate( |
27 blink::WebCryptoAlgorithmIdRsaOaep, | 27 blink::WebCryptoAlgorithmIdRsaOaep, |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 EXPECT_EQ(import_algorithm.id(), public_key2.algorithm().id()); | 561 EXPECT_EQ(import_algorithm.id(), public_key2.algorithm().id()); |
562 | 562 |
563 // TODO(eroman): Export the SPKI and verify matches. | 563 // TODO(eroman): Export the SPKI and verify matches. |
564 } | 564 } |
565 } | 565 } |
566 | 566 |
567 } // namespace | 567 } // namespace |
568 | 568 |
569 } // namespace webcrypto | 569 } // namespace webcrypto |
570 | 570 |
571 } // namespace content | 571 } // namespace components |
OLD | NEW |