Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / crypto / NormalizeAlgorithm.h
1 /*
2  * Copyright (C) 2013 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
29  */
30
31 #ifndef NormalizeAlgorithm_h
32 #define NormalizeAlgorithm_h
33
34 #include "public/platform/WebCryptoAlgorithm.h"
35 #include "wtf/Assertions.h"
36 #include "wtf/Forward.h"
37
38 namespace blink { class WebCryptoAlgorithm; }
39
40 namespace WebCore {
41
42 class Dictionary;
43 class ExceptionState;
44
45 enum AlgorithmOperation {
46     Encrypt,
47     Decrypt,
48     Sign,
49     Verify,
50     Digest,
51     GenerateKey,
52     ImportKey,
53     DeriveKey,
54     WrapKey,
55     UnwrapKey,
56     // <---- End of list (keep this up-to-date)
57     LastAlgorithmOperation = UnwrapKey,
58 };
59
60 // Converts a javascript Dictionary to a WebCryptoAlgorithm object.
61 //
62 // This corresponds with "normalizing" [1] the algorithm, and then validating
63 // the expected parameters for the algorithm/operation combination.
64 //
65 // On success returns true and sets the WebCryptoAlgorithm.
66 //
67 // On failure parseAlgorithm returns false. errorDetails will be filled
68 // with a (non-localized) debug string. Additionally the ExceptionState *may*
69 // be set (the web crypto spec only defines a handeful of errors as resulting
70 // in exceptions).
71 //
72 // [1] http://www.w3.org/TR/WebCryptoAPI/#algorithm-normalizing-rules
73 bool parseAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, String& errorDetails, ExceptionState&) WARN_UNUSED_RETURN;
74
75 // Returns a null-terminated C-string literal. Caller can assume the pointer
76 // will be valid for the program's entire runtime.
77 const char* algorithmIdToName(blink::WebCryptoAlgorithmId);
78
79 } // namespace WebCore
80
81 #endif