| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <openssl/evp.h> |
| 5 #include <stdint.h> | 6 #include <stdint.h> |
| 6 | 7 |
| 7 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 8 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
| 9 #include "components/webcrypto/algorithm_implementation.h" | 10 #include "components/webcrypto/algorithm_implementation.h" |
| 10 #include "components/webcrypto/algorithms/secret_key_util.h" | 11 #include "components/webcrypto/algorithms/secret_key_util.h" |
| 11 #include "components/webcrypto/algorithms/util.h" | 12 #include "components/webcrypto/algorithms/util.h" |
| 12 #include "components/webcrypto/blink_key_handle.h" | 13 #include "components/webcrypto/blink_key_handle.h" |
| 13 #include "components/webcrypto/crypto_data.h" | 14 #include "components/webcrypto/crypto_data.h" |
| 14 #include "components/webcrypto/status.h" | 15 #include "components/webcrypto/status.h" |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 126 } |
| 126 }; | 127 }; |
| 127 | 128 |
| 128 } // namespace | 129 } // namespace |
| 129 | 130 |
| 130 std::unique_ptr<AlgorithmImplementation> CreatePbkdf2Implementation() { | 131 std::unique_ptr<AlgorithmImplementation> CreatePbkdf2Implementation() { |
| 131 return base::WrapUnique(new Pbkdf2Implementation); | 132 return base::WrapUnique(new Pbkdf2Implementation); |
| 132 } | 133 } |
| 133 | 134 |
| 134 } // namespace webcrypto | 135 } // namespace webcrypto |
| OLD | NEW |