blob: 41e7f59cc9f76b23751eb41b53efcc0ef5c6821f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef _nsPgpmimeDecrypt_h_
#define _nsPgpmimeDecrypt_h_
#include "mimecth.h"
#include "nsIPgpMimeProxy.h"
#include "nsCOMPtr.h"
#include "nsIStreamListener.h"
#include "nsIInputStream.h"
#include "nsILoadGroup.h"
#define PGPMIME_JS_DECRYPTOR_CONTRACTID "@mozilla.org/mime/pgp-mime-js-decrypt;1"
typedef struct MimeEncryptedPgpClass MimeEncryptedPgpClass;
typedef struct MimeEncryptedPgp MimeEncryptedPgp;
struct MimeEncryptedPgpClass {
MimeEncryptedClass encrypted;
};
struct MimeEncryptedPgp {
MimeEncrypted encrypted;
};
class nsPgpMimeProxy : public nsIPgpMimeProxy,
public nsIRequest,
public nsIInputStream
{
public:
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSIPGPMIMEPROXY
NS_DECL_NSIREQUESTOBSERVER
NS_DECL_NSISTREAMLISTENER
NS_DECL_NSIREQUEST
NS_DECL_NSIINPUTSTREAM
nsPgpMimeProxy();
// Define a Create method to be used with a factory:
static NS_METHOD
Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
protected:
virtual ~nsPgpMimeProxy();
bool mInitialized;
nsCOMPtr<nsIStreamListener> mDecryptor;
MimeDecodeCallbackFun mOutputFun;
void* mOutputClosure;
nsCOMPtr<nsILoadGroup> mLoadGroup;
nsLoadFlags mLoadFlags;
nsresult mCancelStatus;
uint32_t mStreamOffset;
nsCString mByteBuf;
nsCString mContentType;
nsCString mMimePart;
nsresult Finalize();
};
#define MimeEncryptedPgpClassInitializer(ITYPE,CSUPER) \
{ MimeEncryptedClassInitializer(ITYPE,CSUPER) }
#endif
|