sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __PADDINGSHIM_H__
|
sl@0
|
20 |
#define __PADDINGSHIM_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
@internalComponent
|
sl@0
|
25 |
@released
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <padding.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
Shim class for CPaddingNone. This should only be created by CPaddingNone.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
NONSHARABLE_CLASS(CPaddingNoneShim) : public CPaddingNone
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
static CPaddingNoneShim* NewL(TInt aBlockBytes);
|
sl@0
|
37 |
static CPaddingNoneShim* NewLC(TInt aBlockBytes);
|
sl@0
|
38 |
|
sl@0
|
39 |
protected:
|
sl@0
|
40 |
// From CBase
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Used by the CBufferedTransformShim class to determine the type of
|
sl@0
|
43 |
the padding mode selected. The SPI plug-in is then configured to use
|
sl@0
|
44 |
the selected padding mdoe.
|
sl@0
|
45 |
|
sl@0
|
46 |
@param aExtensionId The requested interface
|
sl@0
|
47 |
@param a0 Not used. This function does NOT return a real interface.
|
sl@0
|
48 |
@param a1 Not used.
|
sl@0
|
49 |
@return KErrNone if aExtensionId is CryptoSpi::KPaddingModeNoneUid;
|
sl@0
|
50 |
otherwise, KErrNotFound is returned.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
CPaddingNoneShim(TInt aBlockBytes);
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Shim class for CPaddingPKCS1Signature. This should only be created by
|
sl@0
|
59 |
CPaddingPKCS1Signature.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
NONSHARABLE_CLASS(CPaddingPKCS1SignatureShim) : public CPaddingPKCS1Signature
|
sl@0
|
62 |
{
|
sl@0
|
63 |
public:
|
sl@0
|
64 |
static CPaddingPKCS1SignatureShim* NewL(TInt aBlockBytes);
|
sl@0
|
65 |
static CPaddingPKCS1SignatureShim* NewLC(TInt aBlockBytes);
|
sl@0
|
66 |
|
sl@0
|
67 |
protected:
|
sl@0
|
68 |
// From CBase
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Used by the CBufferedTransformShim class to determine the type of
|
sl@0
|
71 |
the padding mode selected. The SPI plug-in is then configured to use
|
sl@0
|
72 |
the selected padding mdoe.
|
sl@0
|
73 |
|
sl@0
|
74 |
@param aExtensionId The requested interface
|
sl@0
|
75 |
@param a0 Not used. This function does NOT return a real interface.
|
sl@0
|
76 |
@param a1 Not used.
|
sl@0
|
77 |
@return KErrNone if aExtensionId is CryptoSpi::KPaddingModeNoneUid;
|
sl@0
|
78 |
otherwise, KErrNotFound is returned.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
CPaddingPKCS1SignatureShim(TInt aBlockBytes);
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
Shim class for CPaddingPKCS1Encryption. This should only be created by
|
sl@0
|
87 |
CPaddingPKCS1Encryption.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
NONSHARABLE_CLASS(CPaddingPKCS1EncryptionShim) : public CPaddingPKCS1Encryption
|
sl@0
|
90 |
{
|
sl@0
|
91 |
public:
|
sl@0
|
92 |
static CPaddingPKCS1EncryptionShim* NewL(TInt aBlockBytes);
|
sl@0
|
93 |
static CPaddingPKCS1EncryptionShim* NewLC(TInt aBlockBytes);
|
sl@0
|
94 |
|
sl@0
|
95 |
protected:
|
sl@0
|
96 |
// From CBase
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
Used by the CBufferedTransformShim class to determine the type of
|
sl@0
|
99 |
the padding mode selected. The SPI plug-in is then configured to use
|
sl@0
|
100 |
the selected padding mdoe.
|
sl@0
|
101 |
|
sl@0
|
102 |
@param aExtensionId The requested interface
|
sl@0
|
103 |
@param a0 Not used. This function does NOT return a real interface.
|
sl@0
|
104 |
@param a1 Not used.
|
sl@0
|
105 |
@return KErrNone if aExtensionId is CryptoSpi::KPaddingModeNoneUid;
|
sl@0
|
106 |
otherwise, KErrNotFound is returned.
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
CPaddingPKCS1EncryptionShim(TInt aBlockBytes);
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
Shim class for CPaddingSSLv3. This should only be created by
|
sl@0
|
115 |
CPaddingSSLv3.
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
NONSHARABLE_CLASS(CPaddingSSLv3Shim) : public CPaddingSSLv3
|
sl@0
|
118 |
{
|
sl@0
|
119 |
public:
|
sl@0
|
120 |
static CPaddingSSLv3Shim* NewL(TInt aBlockBytes);
|
sl@0
|
121 |
static CPaddingSSLv3Shim* NewLC(TInt aBlockBytes);
|
sl@0
|
122 |
|
sl@0
|
123 |
protected:
|
sl@0
|
124 |
// From CBase
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
Used by the CBufferedTransformShim class to determine the type of
|
sl@0
|
127 |
the padding mode selected. The SPI plug-in is then configured to use
|
sl@0
|
128 |
the selected padding mdoe.
|
sl@0
|
129 |
|
sl@0
|
130 |
@param aExtensionId The requested interface
|
sl@0
|
131 |
@param a0 Not used. This function does NOT return a real interface.
|
sl@0
|
132 |
@param a1 Not used.
|
sl@0
|
133 |
@return KErrNone if aExtensionId is CryptoSpi::KPaddingModeNoneUid;
|
sl@0
|
134 |
otherwise, KErrNotFound is returned.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
|
sl@0
|
137 |
private:
|
sl@0
|
138 |
CPaddingSSLv3Shim(TInt aBlockBytes);
|
sl@0
|
139 |
};
|
sl@0
|
140 |
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
Shim class for CPaddingPKCS7. This should only be created by
|
sl@0
|
143 |
CPaddingPKCS7.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
NONSHARABLE_CLASS(CPaddingPKCS7Shim) : public CPaddingPKCS7
|
sl@0
|
146 |
{
|
sl@0
|
147 |
public:
|
sl@0
|
148 |
static CPaddingPKCS7Shim* NewL(TInt aBlockBytes);
|
sl@0
|
149 |
static CPaddingPKCS7Shim* NewLC(TInt aBlockBytes);
|
sl@0
|
150 |
|
sl@0
|
151 |
protected:
|
sl@0
|
152 |
// From CBase
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
Used by the CBufferedTransformShim class to determine the type of
|
sl@0
|
155 |
the padding mode selected. The SPI plug-in is then configured to use
|
sl@0
|
156 |
the selected padding mdoe.
|
sl@0
|
157 |
|
sl@0
|
158 |
@param aExtensionId The requested interface
|
sl@0
|
159 |
@param a0 Not used. This function does NOT return a real interface.
|
sl@0
|
160 |
@param a1 Not used.
|
sl@0
|
161 |
@return KErrNone if aExtensionId is CryptoSpi::KPaddingModeNoneUid;
|
sl@0
|
162 |
otherwise, KErrNotFound is returned.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
|
sl@0
|
165 |
private:
|
sl@0
|
166 |
CPaddingPKCS7Shim(TInt aBlockBytes);
|
sl@0
|
167 |
};
|
sl@0
|
168 |
|
sl@0
|
169 |
#endif // __PADDINGSHIM_H__
|