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

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

Issue 698363002: webcrypto: Add ECDSA algorithm (chromium-side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extract_more
Patch Set: sigh, more android pedantry Created 6 years, 1 month 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 | « content/child/webcrypto/jwk.cc ('k') | content/child/webcrypto/openssl/ec_key_openssl.h » ('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 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 AlgorithmImplementation* CreatePlatformAesCtrImplementation() { 83 AlgorithmImplementation* CreatePlatformAesCtrImplementation() {
84 // TODO(eroman): http://crbug.com/399084 84 // TODO(eroman): http://crbug.com/399084
85 return NULL; 85 return NULL;
86 } 86 }
87 87
88 AlgorithmImplementation* CreatePlatformRsaPssImplementation() { 88 AlgorithmImplementation* CreatePlatformRsaPssImplementation() {
89 // TODO(eroman): http://crbug.com/399090 89 // TODO(eroman): http://crbug.com/399090
90 return NULL; 90 return NULL;
91 } 91 }
92 92
93 AlgorithmImplementation* CreatePlatformEcdsaImplementation() {
94 // TODO(eroman): http://crbug.com/399094
95 return NULL;
96 }
97
93 } // namespace webcrypto 98 } // namespace webcrypto
94 99
95 } // namespace content 100 } // namespace content
OLDNEW
« no previous file with comments | « content/child/webcrypto/jwk.cc ('k') | content/child/webcrypto/openssl/ec_key_openssl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698