Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. */
5 #ifndef _NS_DATASIGNATUREVERIFIER_H_
6 #define _NS_DATASIGNATUREVERIFIER_H_
8 #include "nsIDataSignatureVerifier.h"
9 #include "mozilla/Attributes.h"
11 #include "keythi.h"
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"
20 class nsDataSignatureVerifier MOZ_FINAL : public nsIDataSignatureVerifier
21 {
22 public:
23 NS_DECL_ISUPPORTS
24 NS_DECL_NSIDATASIGNATUREVERIFIER
26 nsDataSignatureVerifier()
27 {
28 }
30 private:
31 ~nsDataSignatureVerifier()
32 {
33 }
34 };
36 #endif // _NS_DATASIGNATUREVERIFIER_H_