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

Side by Side Diff: content/child/webcrypto/nss/util_nss.cc

Issue 797723006: Implement PBKDF2 (except for generateKey) using BoringSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pbkdf2
Patch Set: Created 5 years, 11 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
OLDNEW
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 "content/child/webcrypto/nss/util_nss.h" 5 #include "content/child/webcrypto/nss/util_nss.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "content/child/webcrypto/crypto_data.h" 8 #include "content/child/webcrypto/crypto_data.h"
9 #include "content/child/webcrypto/platform_crypto.h" 9 #include "content/child/webcrypto/platform_crypto.h"
10 #include "crypto/nss_util.h" 10 #include "crypto/nss_util.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 AlgorithmImplementation* CreatePlatformEcdhImplementation() { 99 AlgorithmImplementation* CreatePlatformEcdhImplementation() {
100 // TODO(eroman): http://crbug.com/399093 100 // TODO(eroman): http://crbug.com/399093
101 return NULL; 101 return NULL;
102 } 102 }
103 103
104 AlgorithmImplementation* CreatePlatformHkdfImplementation() { 104 AlgorithmImplementation* CreatePlatformHkdfImplementation() {
105 // HKDF is only being imlemented for BoringSSL. 105 // HKDF is only being imlemented for BoringSSL.
106 return NULL; 106 return NULL;
107 } 107 }
108 108
109 AlgorithmImplementation* CreatePlatformPbkdf2Implementation() {
110 // PBKDF2 will only be implemented for BoringSSL, since the NSS
111 // implementation is being deprecated.
112 return NULL;
113 }
114
109 } // namespace webcrypto 115 } // namespace webcrypto
110 116
111 } // namespace content 117 } // namespace content
OLDNEW
« no previous file with comments | « content/child/webcrypto/algorithm_registry.cc ('k') | content/child/webcrypto/openssl/pbkdf2_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698