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

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: More fixes to review from eroman 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
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 "base/memory/scoped_ptr.h"
11 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
12 #include "third_party/WebKit/public/platform/WebCrypto.h" 13 #include "third_party/WebKit/public/platform/WebCrypto.h"
13 14
14 namespace content { 15 namespace content {
15 16
16 class CONTENT_EXPORT WebCryptoImpl 17 class CONTENT_EXPORT WebCryptoImpl
17 : NON_EXPORTED_BASE(public WebKit::WebCrypto) { 18 : NON_EXPORTED_BASE(public WebKit::WebCrypto) {
18 public: 19 public:
19 virtual void digest( 20 virtual void digest(
20 const WebKit::WebCryptoAlgorithm& algorithm, 21 const WebKit::WebCryptoAlgorithm& algorithm,
21 const unsigned char* data, 22 const unsigned char* data,
22 size_t data_size, 23 size_t data_size,
23 WebKit::WebCryptoResult result); 24 WebKit::WebCryptoResult result);
25 virtual void importKey(
26 WebKit::WebCryptoKeyFormat format,
27 const unsigned char* key_data,
28 size_t key_data_size,
29 const WebKit::WebCryptoAlgorithm& algorithm,
30 bool extractable,
31 WebKit::WebCryptoKeyUsageMask usage_mask,
32 WebKit::WebCryptoResult result);
33 virtual void sign(
34 const WebKit::WebCryptoAlgorithm& algorithm,
35 const WebKit::WebCryptoKey& key,
36 const unsigned char* data,
37 size_t data_size,
38 WebKit::WebCryptoResult result);
24 39
25 protected: 40 protected:
26 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, DigestSampleSets); 41 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, DigestSampleSets);
42 FRIEND_TEST_ALL_PREFIXES(WebCryptoImplTest, HMACSampleSets);
27 43
28 bool digestInternal( 44 bool DigestInternal(
29 const WebKit::WebCryptoAlgorithm& algorithm, 45 const WebKit::WebCryptoAlgorithm& algorithm,
30 const unsigned char* data, 46 const unsigned char* data,
31 size_t data_size, 47 size_t data_size,
32 WebKit::WebArrayBuffer* buffer); 48 WebKit::WebArrayBuffer* buffer);
49 bool ImportKeyInternal(
50 WebKit::WebCryptoKeyFormat format,
51 const unsigned char* key_data,
52 size_t key_data_size,
eroman 2013/09/09 23:00:48 I suggest making the internal method "unsigned int
Bryan Eyler 2013/09/10 01:15:54 Done.
53 const WebKit::WebCryptoAlgorithm& algorithm,
54 WebKit::WebCryptoKeyUsageMask usage_mask,
55 scoped_ptr<WebKit::WebCryptoKeyHandle>* handle,
56 WebKit::WebCryptoKeyType* type);
57 bool SignInternal(
58 const WebKit::WebCryptoAlgorithm& algorithm,
59 const WebKit::WebCryptoKeyHandle* key,
60 const unsigned char* data,
61 size_t data_size,
eroman 2013/09/09 23:00:48 same here
Bryan Eyler 2013/09/10 01:15:54 Done.
62 WebKit::WebArrayBuffer* buffer);
33 }; 63 };
34 64
35 } // namespace content 65 } // namespace content
36 66
37 #endif // CONTENT_RENDERER_WEBCRYPTO_IMPL_H_ 67 #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_nss.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698