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

Side by Side Diff: content/child/webcrypto/platform_crypto.h

Issue 698363002: webcrypto: Add ECDSA algorithm (chromium-side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extract_more
Patch Set: rebase + add another test 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
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 #ifndef CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_ 5 #ifndef CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_
6 #define CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_ 6 #define CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 AlgorithmImplementation* CreatePlatformShaImplementation(); 26 AlgorithmImplementation* CreatePlatformShaImplementation();
27 AlgorithmImplementation* CreatePlatformAesCbcImplementation(); 27 AlgorithmImplementation* CreatePlatformAesCbcImplementation();
28 AlgorithmImplementation* CreatePlatformAesCtrImplementation(); 28 AlgorithmImplementation* CreatePlatformAesCtrImplementation();
29 AlgorithmImplementation* CreatePlatformAesGcmImplementation(); 29 AlgorithmImplementation* CreatePlatformAesGcmImplementation();
30 AlgorithmImplementation* CreatePlatformAesKwImplementation(); 30 AlgorithmImplementation* CreatePlatformAesKwImplementation();
31 AlgorithmImplementation* CreatePlatformHmacImplementation(); 31 AlgorithmImplementation* CreatePlatformHmacImplementation();
32 AlgorithmImplementation* CreatePlatformRsaOaepImplementation(); 32 AlgorithmImplementation* CreatePlatformRsaOaepImplementation();
33 AlgorithmImplementation* CreatePlatformRsaSsaImplementation(); 33 AlgorithmImplementation* CreatePlatformRsaSsaImplementation();
34 AlgorithmImplementation* CreatePlatformRsaPssImplementation(); 34 AlgorithmImplementation* CreatePlatformRsaPssImplementation();
35 AlgorithmImplementation* CreatePlatformEcdsaImplementation();
35 36
36 bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key, 37 bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key,
37 blink::WebVector<uint8_t>* key_data); 38 blink::WebVector<uint8_t>* key_data);
38 39
39 } // namespace webcrypto 40 } // namespace webcrypto
40 41
41 } // namespace content 42 } // namespace content
42 43
43 #endif // CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_ 44 #endif // CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698