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

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

Issue 18475002: WebCrypto: Add framework for AlgorithmIdentifier normalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename verify --> verifySignature (because "verify" is a macro on Mac) Created 7 years, 5 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 | « Source/modules/crypto/NormalizeAlgorithm.cpp ('k') | Source/modules/crypto/SubtleCrypto.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 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
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
OLDNEW
« no previous file with comments | « Source/modules/crypto/NormalizeAlgorithm.cpp ('k') | Source/modules/crypto/SubtleCrypto.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698