OLD | NEW |
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 |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "third_party/WebKit/public/platform/WebCrypto.h" | 12 #include "third_party/WebKit/public/platform/WebCrypto.h" |
13 | 13 |
14 // The definitions for these methods lives in either nss/ or openssl/ | 14 // The definitions for these methods lives in either nss/ or openssl/ |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 namespace webcrypto { | 17 namespace webcrypto { |
18 | 18 |
19 class AlgorithmImplementation; | 19 class AlgorithmImplementation; |
20 | 20 |
21 void PlatformInit(); | 21 void PlatformInit(); |
22 | 22 |
23 scoped_ptr<blink::WebCryptoDigestor> CreatePlatformDigestor( | 23 scoped_ptr<blink::WebCryptoDigestor> CreatePlatformDigestor( |
24 blink::WebCryptoAlgorithmId algorithm); | 24 blink::WebCryptoAlgorithmId algorithm); |
25 | 25 |
26 AlgorithmImplementation* CreatePlatformShaImplementation(); | 26 AlgorithmImplementation* CreatePlatformShaImplementation(); |
27 AlgorithmImplementation* CreatePlatformAesCbcImplementation(); | 27 AlgorithmImplementation* CreatePlatformAesCbcImplementation(); |
| 28 AlgorithmImplementation* CreatePlatformAesCtrImplementation(); |
28 AlgorithmImplementation* CreatePlatformAesGcmImplementation(); | 29 AlgorithmImplementation* CreatePlatformAesGcmImplementation(); |
29 AlgorithmImplementation* CreatePlatformAesKwImplementation(); | 30 AlgorithmImplementation* CreatePlatformAesKwImplementation(); |
30 AlgorithmImplementation* CreatePlatformHmacImplementation(); | 31 AlgorithmImplementation* CreatePlatformHmacImplementation(); |
31 AlgorithmImplementation* CreatePlatformRsaOaepImplementation(); | 32 AlgorithmImplementation* CreatePlatformRsaOaepImplementation(); |
32 AlgorithmImplementation* CreatePlatformRsaSsaImplementation(); | 33 AlgorithmImplementation* CreatePlatformRsaSsaImplementation(); |
33 | 34 |
34 bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key, | 35 bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key, |
35 blink::WebVector<uint8_t>* key_data); | 36 blink::WebVector<uint8_t>* key_data); |
36 | 37 |
37 } // namespace webcrypto | 38 } // namespace webcrypto |
38 | 39 |
39 } // namespace content | 40 } // namespace content |
40 | 41 |
41 #endif // CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_ | 42 #endif // CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_ |
OLD | NEW |