Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: components/webcrypto/algorithms/pbkdf2.cc

Issue 2407633002: Use new BoringSSL scopers in //components. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/webcrypto/algorithms/ecdsa.cc ('k') | components/webcrypto/algorithms/rsa.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/webcrypto/algorithms/ecdsa.cc ('k') | components/webcrypto/algorithms/rsa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698