|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 #ifndef _NS_DATASIGNATUREVERIFIER_H_ |
|
6 #define _NS_DATASIGNATUREVERIFIER_H_ |
|
7 |
|
8 #include "nsIDataSignatureVerifier.h" |
|
9 #include "mozilla/Attributes.h" |
|
10 |
|
11 #include "keythi.h" |
|
12 |
|
13 // 296d76aa-275b-4f3c-af8a-30a4026c18fc |
|
14 #define NS_DATASIGNATUREVERIFIER_CID \ |
|
15 { 0x296d76aa, 0x275b, 0x4f3c, \ |
|
16 { 0xaf, 0x8a, 0x30, 0xa4, 0x02, 0x6c, 0x18, 0xfc } } |
|
17 #define NS_DATASIGNATUREVERIFIER_CONTRACTID \ |
|
18 "@mozilla.org/security/datasignatureverifier;1" |
|
19 |
|
20 class nsDataSignatureVerifier MOZ_FINAL : public nsIDataSignatureVerifier |
|
21 { |
|
22 public: |
|
23 NS_DECL_ISUPPORTS |
|
24 NS_DECL_NSIDATASIGNATUREVERIFIER |
|
25 |
|
26 nsDataSignatureVerifier() |
|
27 { |
|
28 } |
|
29 |
|
30 private: |
|
31 ~nsDataSignatureVerifier() |
|
32 { |
|
33 } |
|
34 }; |
|
35 |
|
36 #endif // _NS_DATASIGNATUREVERIFIER_H_ |