| OLD | NEW |
| 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 23 matching lines...) Expand all Loading... |
| 34 #include "bindings/v8/ScriptPromise.h" | 34 #include "bindings/v8/ScriptPromise.h" |
| 35 #include "bindings/v8/ScriptWrappable.h" | 35 #include "bindings/v8/ScriptWrappable.h" |
| 36 #include "heap/Handle.h" | 36 #include "heap/Handle.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class Dictionary; | 43 class Dictionary; |
| 44 class ExceptionState; | |
| 45 class Key; | 44 class Key; |
| 46 | 45 |
| 47 class SubtleCrypto : public RefCountedWillBeGarbageCollectedFinalized<SubtleCryp
to>, public ScriptWrappable { | 46 class SubtleCrypto : public RefCountedWillBeGarbageCollectedFinalized<SubtleCryp
to>, public ScriptWrappable { |
| 48 public: | 47 public: |
| 49 static PassRefPtrWillBeRawPtr<SubtleCrypto> create() | 48 static PassRefPtrWillBeRawPtr<SubtleCrypto> create() |
| 50 { | 49 { |
| 51 return adoptRefWillBeNoop(new SubtleCrypto()); | 50 return adoptRefWillBeNoop(new SubtleCrypto()); |
| 52 } | 51 } |
| 53 | 52 |
| 54 ScriptPromise encrypt(const Dictionary&, Key*, ArrayBufferView* data, Except
ionState&); | 53 ScriptPromise encrypt(const Dictionary&, Key*, ArrayBufferView* data); |
| 55 ScriptPromise decrypt(const Dictionary&, Key*, ArrayBufferView* data, Except
ionState&); | 54 ScriptPromise decrypt(const Dictionary&, Key*, ArrayBufferView* data); |
| 56 ScriptPromise sign(const Dictionary&, Key*, ArrayBufferView* data, Exception
State&); | 55 ScriptPromise sign(const Dictionary&, Key*, ArrayBufferView* data); |
| 57 // Note that this is not named "verify" because when compiling on Mac that e
xpands to a macro and breaks. | 56 // Note that this is not named "verify" because when compiling on Mac that e
xpands to a macro and breaks. |
| 58 ScriptPromise verifySignature(const Dictionary&, Key*, ArrayBufferView* sign
ature, ArrayBufferView* data, ExceptionState&); | 57 ScriptPromise verifySignature(const Dictionary&, Key*, ArrayBufferView* sign
ature, ArrayBufferView* data); |
| 59 ScriptPromise digest(const Dictionary&, ArrayBufferView* data, ExceptionStat
e&); | 58 ScriptPromise digest(const Dictionary&, ArrayBufferView* data); |
| 60 | 59 |
| 61 ScriptPromise generateKey(const Dictionary&, bool extractable, const Vector<
String>& keyUsages, ExceptionState&); | 60 ScriptPromise generateKey(const Dictionary&, bool extractable, const Vector<
String>& keyUsages); |
| 62 ScriptPromise importKey(const String&, ArrayBufferView*, const Dictionary&,
bool extractable, const Vector<String>& keyUsages, ExceptionState&); | 61 ScriptPromise importKey(const String&, ArrayBufferView*, const Dictionary&,
bool extractable, const Vector<String>& keyUsages); |
| 63 ScriptPromise exportKey(const String&, Key*, ExceptionState&); | 62 ScriptPromise exportKey(const String&, Key*); |
| 64 | 63 |
| 65 ScriptPromise wrapKey(const String&, Key*, Key*, const Dictionary&, Exceptio
nState&); | 64 ScriptPromise wrapKey(const String&, Key*, Key*, const Dictionary&); |
| 66 ScriptPromise unwrapKey(const String&, ArrayBufferView*, Key*, const Diction
ary&, const Dictionary&, bool, const Vector<String>&, ExceptionState&); | 65 ScriptPromise unwrapKey(const String&, ArrayBufferView*, Key*, const Diction
ary&, const Dictionary&, bool, const Vector<String>&); |
| 67 | 66 |
| 68 void trace(Visitor*) { } | 67 void trace(Visitor*) { } |
| 69 | 68 |
| 70 private: | 69 private: |
| 71 SubtleCrypto(); | 70 SubtleCrypto(); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace WebCore | 73 } // namespace WebCore |
| 75 | 74 |
| 76 #endif | 75 #endif |
| OLD | NEW |