1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is Mozilla Communicator.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corp..
19 * Portions created by the Initial Developer are Copyright (C) 2001
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s): David Drinan <ddrinan@netscape.com>
23 * Kai Engert <kengert@redhat.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
42 #include "nsISupports.h"
44 #include "nsXPIDLString.h"
45 #include "nsIInterfaceRequestor.h"
46 #include "nsICMSMessage.h"
47 #include "nsICMSMessage2.h"
48 #include "nsIX509Cert3.h"
49 #include "nsVerificationJob.h"
50 #include "nsICMSEncoder.h"
51 #include "nsICMSDecoder.h"
54 #include "nsNSSShutDown.h"
56 #define NS_CMSMESSAGE_CLASSNAME "CMS Message Object"
57 #define NS_CMSMESSAGE_CID \
58 { 0xa4557478, 0xae16, 0x11d5, { 0xba,0x4b,0x00,0x10,0x83,0x03,0xb1,0x17 } }
60 class nsCMSMessage
: public nsICMSMessage
,
61 public nsICMSMessage2
,
62 public nsNSSShutDownObject
67 NS_DECL_NSICMSMESSAGE2
70 nsCMSMessage(NSSCMSMessage
* aCMSMsg
);
71 virtual ~nsCMSMessage();
73 void referenceContext(nsIInterfaceRequestor
* aContext
) {m_ctx
= aContext
;}
74 NSSCMSMessage
* getCMS() {return m_cmsMsg
;}
76 nsCOMPtr
<nsIInterfaceRequestor
> m_ctx
;
77 NSSCMSMessage
* m_cmsMsg
;
78 NSSCMSSignerInfo
* GetTopLevelSignerInfo();
79 nsresult
CommonVerifySignature(unsigned char* aDigestData
, PRUint32 aDigestDataLen
);
81 nsresult
CommonAsyncVerifySignature(nsISMimeVerificationListener
*aListener
,
82 unsigned char* aDigestData
, PRUint32 aDigestDataLen
);
84 virtual void virtualDestroyNSSReference();
85 void destructorSafeDestroyNSSReference();
87 friend class nsSMimeVerificationJob
;
90 // ===============================================
91 // nsCMSDecoder - implementation of nsICMSDecoder
92 // ===============================================
94 #define NS_CMSDECODER_CLASSNAME "CMS Decoder Object"
95 #define NS_CMSDECODER_CID \
96 { 0x9dcef3a4, 0xa3bc, 0x11d5, { 0xba, 0x47, 0x00, 0x10, 0x83, 0x03, 0xb1, 0x17 } }
98 class nsCMSDecoder
: public nsICMSDecoder
,
99 public nsNSSShutDownObject
103 NS_DECL_NSICMSDECODER
106 virtual ~nsCMSDecoder();
109 nsCOMPtr
<nsIInterfaceRequestor
> m_ctx
;
110 NSSCMSDecoderContext
*m_dcx
;
111 virtual void virtualDestroyNSSReference();
112 void destructorSafeDestroyNSSReference();
115 // ===============================================
116 // nsCMSEncoder - implementation of nsICMSEncoder
117 // ===============================================
119 #define NS_CMSENCODER_CLASSNAME "CMS Decoder Object"
120 #define NS_CMSENCODER_CID \
121 { 0xa15789aa, 0x8903, 0x462b, { 0x81, 0xe9, 0x4a, 0xa2, 0xcf, 0xf4, 0xd5, 0xcb } }
122 class nsCMSEncoder
: public nsICMSEncoder
,
123 public nsNSSShutDownObject
127 NS_DECL_NSICMSENCODER
130 virtual ~nsCMSEncoder();
133 nsCOMPtr
<nsIInterfaceRequestor
> m_ctx
;
134 NSSCMSEncoderContext
*m_ecx
;
135 virtual void virtualDestroyNSSReference();
136 void destructorSafeDestroyNSSReference();