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

Side by Side Diff: content/renderer/webcrypto/webcrypto_util.h

Issue 108653015: [webcrypto] Some fixes for HMAC (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
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_WEBCRYPTO_UTIL_H_ 5 #ifndef CONTENT_RENDERER_WEBCRYPTO_WEBCRYPTO_UTIL_H_
6 #define CONTENT_RENDERER_WEBCRYPTO_WEBCRYPTO_UTIL_H_ 6 #define CONTENT_RENDERER_WEBCRYPTO_WEBCRYPTO_UTIL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // Creates an AES-CBC algorithm whose parameters struct is compatible with key 87 // Creates an AES-CBC algorithm whose parameters struct is compatible with key
88 // generation. 88 // generation.
89 CONTENT_EXPORT blink::WebCryptoAlgorithm CreateAesCbcKeyGenAlgorithm( 89 CONTENT_EXPORT blink::WebCryptoAlgorithm CreateAesCbcKeyGenAlgorithm(
90 unsigned short key_length_bits); 90 unsigned short key_length_bits);
91 91
92 // Creates an AES-GCM algorithm whose parameters struct is compatible with key 92 // Creates an AES-GCM algorithm whose parameters struct is compatible with key
93 // generation. 93 // generation.
94 blink::WebCryptoAlgorithm CreateAesGcmKeyGenAlgorithm( 94 blink::WebCryptoAlgorithm CreateAesGcmKeyGenAlgorithm(
95 unsigned short key_length_bits); 95 unsigned short key_length_bits);
96 96
97 // Returns the internal block size for SHA-*
98 unsigned int ShaBlockSizeBytes(blink::WebCryptoAlgorithmId hash_id);
99
97 } // namespace webcrypto 100 } // namespace webcrypto
98 101
99 } // namespace content 102 } // namespace content
100 103
101 #endif // CONTENT_RENDERER_WEBCRYPTO_WEBCRYPTO_UTIL_H_ 104 #endif // CONTENT_RENDERER_WEBCRYPTO_WEBCRYPTO_UTIL_H_
OLDNEW
« no previous file with comments | « content/renderer/webcrypto/webcrypto_impl_unittest.cc ('k') | content/renderer/webcrypto/webcrypto_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698