| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #ifndef SubtleCrypto_h | 29 #ifndef SubtleCrypto_h |
| 30 #define SubtleCrypto_h | 30 #define SubtleCrypto_h |
| 31 | 31 |
| 32 #include "bindings/v8/ScriptWrappable.h" | 32 #include "bindings/v8/ScriptWrappable.h" |
| 33 #include "wtf/Forward.h" | 33 #include "wtf/Forward.h" |
| 34 #include "wtf/PassRefPtr.h" | 34 #include "wtf/PassRefPtr.h" |
| 35 #include "wtf/RefCounted.h" | 35 #include "wtf/RefCounted.h" |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 class CryptoOperation; |
| 40 class Dictionary; |
| 41 |
| 39 typedef int ExceptionCode; | 42 typedef int ExceptionCode; |
| 40 | 43 |
| 41 class SubtleCrypto : public ScriptWrappable, public RefCounted<SubtleCrypto> { | 44 class SubtleCrypto : public ScriptWrappable, public RefCounted<SubtleCrypto> { |
| 42 public: | 45 public: |
| 43 static PassRefPtr<SubtleCrypto> create() { return adoptRef(new SubtleCrypto(
)); } | 46 static PassRefPtr<SubtleCrypto> create() { return adoptRef(new SubtleCrypto(
)); } |
| 44 | 47 |
| 48 PassRefPtr<CryptoOperation> encrypt(const Dictionary&, ExceptionCode&); |
| 49 PassRefPtr<CryptoOperation> decrypt(const Dictionary&, ExceptionCode&); |
| 50 PassRefPtr<CryptoOperation> sign(const Dictionary&, ExceptionCode&); |
| 51 // Note that this is not named "verify" because when compiling on Mac that e
xpands to a macro and breaks. |
| 52 PassRefPtr<CryptoOperation> verifySignature(const Dictionary&, ExceptionCode
&); |
| 53 PassRefPtr<CryptoOperation> digest(const Dictionary&, ExceptionCode&); |
| 54 |
| 45 private: | 55 private: |
| 46 SubtleCrypto(); | 56 SubtleCrypto(); |
| 47 }; | 57 }; |
| 48 | 58 |
| 49 } | 59 } // namespace WebCore |
| 50 | 60 |
| 51 #endif | 61 #endif |
| OLD | NEW |