1 : /* ***** BEGIN LICENSE BLOCK *****
2 : * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 : *
4 : * The contents of this file are subject to the Mozilla Public License Version
5 : * 1.1 (the "License"); you may not use this file except in compliance with
6 : * the License. You may obtain a copy of the License at
7 : * http://www.mozilla.org/MPL/
8 : *
9 : * Software distributed under the License is distributed on an "AS IS" basis,
10 : * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 : * for the specific language governing rights and limitations under the
12 : * License.
13 : *
14 : * The Original Code is mozilla.org code.
15 : *
16 : * Contributor(s):
17 : * Dave Townsend <dtownsend@oxymoronical.com>
18 : *
19 : * Alternatively, the contents of this file may be used under the terms of
20 : * either the GNU General Public License Version 2 or later (the "GPL"), or
21 : * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
22 : * in which case the provisions of the GPL or the LGPL are applicable instead
23 : * of those above. If you wish to allow use of your version of this file only
24 : * under the terms of either the GPL or the LGPL, and not to allow others to
25 : * use your version of this file under the terms of the MPL, indicate your
26 : * decision by deleting the provisions above and replace them with the notice
27 : * and other provisions required by the GPL or the LGPL. If you do not delete
28 : * the provisions above, a recipient may use your version of this file under
29 : * the terms of any one of the MPL, the GPL or the LGPL.
30 : *
31 : * ***** END LICENSE BLOCK ***** */
32 :
33 : #ifndef _NS_DATASIGNATUREVERIFIER_H_
34 : #define _NS_DATASIGNATUREVERIFIER_H_
35 :
36 : #include "nsIDataSignatureVerifier.h"
37 :
38 : #include "keythi.h"
39 :
40 : // 296d76aa-275b-4f3c-af8a-30a4026c18fc
41 : #define NS_DATASIGNATUREVERIFIER_CID \
42 : { 0x296d76aa, 0x275b, 0x4f3c, \
43 : { 0xaf, 0x8a, 0x30, 0xa4, 0x02, 0x6c, 0x18, 0xfc } }
44 : #define NS_DATASIGNATUREVERIFIER_CONTRACTID \
45 : "@mozilla.org/security/datasignatureverifier;1"
46 :
47 : class nsDataSignatureVerifier : public nsIDataSignatureVerifier
48 : {
49 : public:
50 : NS_DECL_ISUPPORTS
51 : NS_DECL_NSIDATASIGNATUREVERIFIER
52 :
53 3 : nsDataSignatureVerifier()
54 3 : {
55 3 : }
56 :
57 : private:
58 3 : ~nsDataSignatureVerifier()
59 3 : {
60 3 : }
61 : };
62 :
63 : #endif // _NS_DATASIGNATUREVERIFIER_H_
|