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

Side by Side Diff: content/renderer/webcrypto_impl.h

Issue 23569007: WebCrypto: Implement importKey() and sign() for HMAC in NSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 | « no previous file | content/renderer/webcrypto_impl.cc » ('j') | content/renderer/webcrypto_impl.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_RENDERER_WEBCRYPTO_IMPL_H_ 5 #ifndef CONTENT_RENDERER_WEBCRYPTO_IMPL_H_
6 #define CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ 6 #define CONTENT_RENDERER_WEBCRYPTO_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "third_party/WebKit/public/platform/WebCrypto.h" 12 #include "third_party/WebKit/public/platform/WebCrypto.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class CONTENT_EXPORT WebCryptoImpl 16 class CONTENT_EXPORT WebCryptoImpl
17 : NON_EXPORTED_BASE(public WebKit::WebCrypto) { 17 : NON_EXPORTED_BASE(public WebKit::WebCrypto) {
18 public: 18 public:
19 virtual void digest( 19 virtual void digest(
20 const WebKit::WebCryptoAlgorithm& algorithm, 20 const WebKit::WebCryptoAlgorithm& algorithm,
21 const unsigned char* data, 21 const unsigned char* data,
22 size_t data_size, 22 size_t data_size,
23 WebKit::WebCryptoResult result); 23 WebKit::WebCryptoResult result);
24 virtual void importKey(
25 WebKit::WebCryptoKeyFormat format,
26 const unsigned char* keyData,
eroman 2013/09/05 01:57:51 style: key_data (unfortunately things can get conf
Bryan Eyler 2013/09/06 01:27:51 Done.
27 size_t keyDataSize,
eroman 2013/09/05 01:57:51 ditto
Bryan Eyler 2013/09/06 01:27:51 Done.
28 const WebKit::WebCryptoAlgorithm& algorithm,
29 bool extractable,
30 WebKit::WebCryptoKeyUsageMask usage_mask,
31 WebKit::WebCryptoResult result);
32 virtual void sign(
33 const WebKit::WebCryptoAlgorithm& algorithm,
34 const WebKit::WebCryptoKey& key,
35 const unsigned char* data,
36 size_t data_size,
37 WebKit::WebCryptoResult result);
24 38
25 protected: 39 protected:
26 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, DigestSampleSets); 40 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, DigestSampleSets);
41 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, HMACSampleSets);
27 42
28 bool digestInternal( 43 bool digestInternal(
29 const WebKit::WebCryptoAlgorithm& algorithm, 44 const WebKit::WebCryptoAlgorithm& algorithm,
30 const unsigned char* data, 45 const unsigned char* data,
31 size_t data_size, 46 size_t data_size,
32 WebKit::WebArrayBuffer* buffer); 47 WebKit::WebArrayBuffer* buffer);
48 bool importKeyInternal(
49 WebKit::WebCryptoKeyFormat format,
50 const unsigned char* key_data,
51 size_t key_data_size,
52 const WebKit::WebCryptoAlgorithm& algorithm,
53 bool extractable,
eroman 2013/09/05 01:57:51 Can remove this it is unused.
Bryan Eyler 2013/09/06 01:27:51 Done.
54 WebKit::WebCryptoKeyUsageMask usage_mask,
55 WebKit::WebCryptoKeyHandle** handle);
eroman 2013/09/05 01:57:51 I asked on Elly's code review for generateKeyInter
Bryan Eyler 2013/09/06 01:27:51 Done. And fixed DigestInternal.
56 bool signInternal(
57 const WebKit::WebCryptoAlgorithm& algorithm,
58 const WebKit::WebCryptoKeyHandle* key,
59 const unsigned char* data,
60 size_t data_size,
61 WebKit::WebArrayBuffer* buffer);
33 }; 62 };
34 63
35 } // namespace content 64 } // namespace content
36 65
37 #endif // CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ 66 #endif // CONTENT_RENDERER_WEBCRYPTO_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/webcrypto_impl.cc » ('j') | content/renderer/webcrypto_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698