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

Side by Side Diff: Source/modules/crypto/Key.h

Issue 22849026: WebCrypto: Check for HmacKeyParams when seeing if a Key can be used for an Algorithm. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase onto master Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/crypto/sign-verify-expected.txt ('k') | Source/modules/crypto/Key.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef Key_h 31 #ifndef Key_h
32 #define Key_h 32 #define Key_h
33 33
34 #include "bindings/v8/ScriptWrappable.h" 34 #include "bindings/v8/ScriptWrappable.h"
35 #include "modules/crypto/NormalizeAlgorithm.h"
35 #include "public/platform/WebCryptoKey.h" 36 #include "public/platform/WebCryptoKey.h"
36 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
37 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
38 #include "wtf/RefCounted.h" 39 #include "wtf/RefCounted.h"
39 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
40 41
41 namespace WebCore { 42 namespace WebCore {
42 43
43 class Algorithm; 44 class Algorithm;
44 45
45 class Key : public ScriptWrappable, public RefCounted<Key> { 46 class Key : public ScriptWrappable, public RefCounted<Key> {
46 public: 47 public:
47 static PassRefPtr<Key> create(const WebKit::WebCryptoKey& key) { return adop tRef(new Key(key)); } 48 static PassRefPtr<Key> create(const WebKit::WebCryptoKey& key) { return adop tRef(new Key(key)); }
48 49
49 ~Key(); 50 ~Key();
50 51
51 String type() const; 52 String type() const;
52 bool extractable() const; 53 bool extractable() const;
53 Algorithm* algorithm(); 54 Algorithm* algorithm();
54 Vector<String> usages() const; 55 Vector<String> usages() const;
55 56
56 const WebKit::WebCryptoKey& key() const { return m_key; } 57 const WebKit::WebCryptoKey& key() const { return m_key; }
57 58
59 bool canBeUsedForAlgorithm(const WebKit::WebCryptoAlgorithm&, AlgorithmOpera tion, ExceptionState&) const;
60
58 static bool parseFormat(const String&, WebKit::WebCryptoKeyFormat&); 61 static bool parseFormat(const String&, WebKit::WebCryptoKeyFormat&);
59 62
60 // Parses KeyUsage strings to a WebCryptoKeyUsageMask. If any element is 63 // Parses KeyUsage strings to a WebCryptoKeyUsageMask. If any element is
61 // unrecognized, returns false. 64 // unrecognized, returns false.
62 static bool parseUsageMask(const Vector<String>&, WebKit::WebCryptoKeyUsageM ask&); 65 static bool parseUsageMask(const Vector<String>&, WebKit::WebCryptoKeyUsageM ask&);
63 66
64 protected: 67 protected:
65 explicit Key(const WebKit::WebCryptoKey&); 68 explicit Key(const WebKit::WebCryptoKey&);
66 69
67 const WebKit::WebCryptoKey m_key; 70 const WebKit::WebCryptoKey m_key;
68 RefPtr<Algorithm> m_algorithm; 71 RefPtr<Algorithm> m_algorithm;
69 }; 72 };
70 73
71 } // namespace WebCore 74 } // namespace WebCore
72 75
73 #endif 76 #endif
OLDNEW
« no previous file with comments | « LayoutTests/crypto/sign-verify-expected.txt ('k') | Source/modules/crypto/Key.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698