First public contribution.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #define UNUSED_VAR(a) a = a
22 TSecureFilter::TSecureFilter()
25 void TSecureFilter::Set(MStreamBuf* aHost,TInt aMode)
27 // Set this filter up for encryption.
30 TStreamFilter::Set(aHost,aMode);
32 // Make sure any header added by the en/de-cryption goes
33 // straight into the output buffer
34 TPtr8 buf(iBuf,sizeof(iBuf));
35 TRAPD(r, CryptL(buf,iIn));
40 EXPORT_C TInt TSecureFilter::Capacity(TInt aMaxLength)
42 // Return the maximum guaranteed input used for aMaxLength output.
43 // If we can fulfil the request from the output buffer, consume nothing,
44 // otherwise return the space left in the input buffer
47 return aMaxLength<=iOut.Length() ? 0 : KEncryptionFilterBufSize-iIn.Length();
50 LOCAL_C TInt transfer(TDes8& aTarg,TPtrC8& aSrc)
52 TInt avail=aTarg.MaxLength()-aTarg.Length();
53 TInt len=Min(aSrc.Length(),avail);
56 aTarg.Append(aSrc.Left(len));
57 aSrc.Set(aSrc.Mid(len));
62 EXPORT_C TInt TSecureFilter::FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd)
64 // Encrypt the input buffer.
66 // This must consume all its input - when called during reading, it's asserted
67 // that aFrom == anEnd after calling this
70 TPtr8 dest((TUint8*)aPtr,aMaxLength);
71 TPtrC8 src(aFrom,anEnd-aFrom);
73 // Copy as much as possible from the output buffer to the destination
74 TInt req=transfer(dest,iOut);
76 // If there's input in src, copy as much as possible to the input buffer
77 // iIn. If the input buffer is full, the output buffer is empty, and there
78 // is space in the destination buffer, process data
79 if ((src.Length()==0 || transfer(iIn,src)==0) && req)
80 { // process input buffer to generate more output
83 TPtr8 buf(iBuf,sizeof(iBuf));
88 // Copy as much data as possible from the output buffer to the final
89 // destination (updating iOut to point to the remainder), and as
90 // much as possible from the source to the input buffer. If we have
91 // completely emptied the output buffer and filled the input buffer,
92 // and there is space in the destination buffer, go round again.
93 } while (transfer(dest,iOut) && transfer(iIn,src)==0);
96 // Update client's src pointer to reflect what we've consumed
99 // Return the number of bytes output
100 return dest.Length();
103 TInt TSecureFilter::EmitL(const TDesC8& aDes)
105 TInt len=aDes.Length();
107 TStreamFilter::EmitL(aDes.Ptr(),len);
111 EXPORT_C void TSecureFilter::DoSynchL()
113 // Pad out remaining input if necessary, encrypt and emit.
121 TPtr8 buf(iBuf,sizeof(iBuf));
123 TStreamFilter::DoSynchL();
128 EXPORT_C TEncryptFilter::TEncryptFilter():
130 /** Constructs an empty encrypting filter object.
132 The encrypting filter must be set up before use.
138 EXPORT_C void TEncryptFilter::SetL(MStreamBuf* aHost,CPBEncryptor* aKey,TInt aMode)
140 Set this filter up for encryption using a Password Based Encryption object.
142 @leave KErrNoMemory. If a leave occurs, ownership of aKey is retained by the caller,
143 which should thus keep aKey on the cleanup stack when calling this function.
144 @param aHost The stream buffer that is the target for encrypted data.
145 @param aKey A Password Based Encryption handling object.
146 Ownership is transferred from the caller to this object as long as no allocation leave occurs.
147 @param aMode The mode in which the stream buffer is to be used.
148 By default, this is write mode as represented by EWrite.
151 __ASSERT_ALWAYS(aKey!=NULL,Panic(ECryptNoKey));
153 TSecureFilter::Set(aHost,aMode);
156 EXPORT_C TInt TEncryptFilter::CryptL(TDes8& aTarget,const TDesC8& aSource)
158 iKey->Process(aSource,aTarget);
159 return aSource.Length();
162 EXPORT_C void TEncryptFilter::CompleteL(TDes8& aTarget,const TDesC8& aSource)
164 // Encrypt and send remaining input buffer
165 if (aSource.Length() > 0)
167 CryptL(aTarget, aSource);
174 iKey->ProcessFinalL(ptr, aTarget);
178 EXPORT_C void TEncryptFilter::DoRelease()
182 TSecureFilter::DoRelease();
185 EXPORT_C TDecryptFilter::TDecryptFilter():
187 /** Constructs an empty decrypting filter object.
189 The decrypting filter must be set up before use.
195 EXPORT_C void TDecryptFilter::SetL(MStreamBuf* aHost,CPBDecryptor* aKey,TInt aMode)
197 Set this filter up for decryption using a Password Based Encryption object.
199 @leave KErrNoMemory. If a leave occurs, ownership of aKey is retained by the caller,
200 which should thus keep aKey on the cleanup stack when calling this function.
201 @param aHost The stream buffer that is the source of encrypted data.
202 @param aKey A Password Based Encryption decryption object.
203 Ownership is transferred from the caller to this object as long as no allocation leave occurs.
204 @param aMode The mode in which the stream buffer is to be used.
205 By default, this is write mode as represented by ERead.
208 __ASSERT_ALWAYS(aKey!=NULL,Panic(ECryptNoKey));
210 TSecureFilter::Set(aHost,aMode);
213 EXPORT_C TInt TDecryptFilter::CryptL(TDes8& aTarget,const TDesC8& aSource)
215 iKey->Process(aSource,aTarget);
216 return aSource.Length();
219 EXPORT_C void TDecryptFilter::CompleteL(TDes8& /*aTarget*/,const TDesC8& aSource)
221 if (aSource.Length()!=0)
222 User::Leave(KErrCorrupt);
225 EXPORT_C void TDecryptFilter::DoRelease()
229 TSecureFilter::DoRelease();
232 void HEncryptFilter::DoRelease()
234 // Finished with this filter.
240 void HDecryptFilter::DoRelease()
242 // Finished with this filter.