os/persistentdata/persistentstorage/store/UCRYPT/UE_STRM.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "UE_STD.H"
sl@0
    17
sl@0
    18
#include <pbe.h>
sl@0
    19
sl@0
    20
#define PBEDATA_NO_EXPORTED_CONSTRUCTORS
sl@0
    21
#include <pbedata.h>
sl@0
    22
sl@0
    23
sl@0
    24
sl@0
    25
sl@0
    26
sl@0
    27
EXPORT_C void RDecryptStream::OpenL(RReadStream& aHost,const CPBEncryptionBase& aKey)
sl@0
    28
/**
sl@0
    29
Open a decrypting read stream to aHost.
sl@0
    30
Prepares the source stream owned by the specified read stream interface object for 
sl@0
    31
reading through a decrypting filter.
sl@0
    32
@publishedPartner
sl@0
    33
@leave KErrNoMemory
sl@0
    34
@param aHost The read stream interface object for the source stream. 
sl@0
    35
This function does not take ownership of the source stream.
sl@0
    36
@param aKey A Password Based Encryption object for encryption handling.
sl@0
    37
*/
sl@0
    38
	{
sl@0
    39
	CPBDecryptor* decryptor = aKey.NewDecryptLC();
sl@0
    40
	iFilter.SetL(aHost.Source(),decryptor,iFilter.ERead);
sl@0
    41
	CleanupStack::Pop(decryptor);
sl@0
    42
	RReadStream::Attach(&iFilter);
sl@0
    43
	}
sl@0
    44
sl@0
    45
EXPORT_C void RDecryptStream::OpenLC(RReadStream& aHost,const CPBEncryptionBase& aKey)
sl@0
    46
/**
sl@0
    47
Open a decrypting read stream to aHost.
sl@0
    48
Prepares the source stream owned by the specified read stream interface object for 
sl@0
    49
reading through a decrypting filter, and puts a cleanup item onto the cleanup stack.
sl@0
    50
@publishedPartner
sl@0
    51
@leave KErrNoMemory
sl@0
    52
@param aHost The read stream interface object for the source stream. 
sl@0
    53
This function does not take ownership of the source stream.
sl@0
    54
@param aKey A Password Based Encryption object for encryption handling.
sl@0
    55
*/	
sl@0
    56
{
sl@0
    57
	OpenL(aHost,aKey);
sl@0
    58
	PushL();
sl@0
    59
	}
sl@0
    60
sl@0
    61
EXPORT_C void RDecryptStream::AttachL(RReadStream& aHost,const CPBEncryptionBase& aKey)
sl@0
    62
/**
sl@0
    63
Attach a decrypting read stream to aHost.
sl@0
    64
Takes ownership of the source stream owned by the specified read stream interface object, 
sl@0
    65
and prepares the stream for reading through a decrypting filter.
sl@0
    66
@publishedPartner
sl@0
    67
@leave KErrNoMemory
sl@0
    68
@param aHost The read stream interface object for the source stream.
sl@0
    69
@param aKey A Password Based Encryption object for encryption handling.
sl@0
    70
*/	{
sl@0
    71
	AttachLC(aHost,aKey);
sl@0
    72
	CleanupStack::Pop();
sl@0
    73
	}
sl@0
    74
sl@0
    75
EXPORT_C void RDecryptStream::AttachLC(RReadStream& aHost,const CPBEncryptionBase& aKey)
sl@0
    76
/**
sl@0
    77
Attach a decrypting read stream to aHost.
sl@0
    78
Takes ownership of the source stream owned by the specified read stream interface object, 
sl@0
    79
prepares the stream for reading through a decrypting filter, and puts a cleanup item onto the cleanup stack.
sl@0
    80
@publishedPartner
sl@0
    81
@leave KErrNoMemory
sl@0
    82
@param aHost The read stream interface object for the source stream.
sl@0
    83
@param aKey A Password Based Encryption object for encryption handling.
sl@0
    84
*/	{
sl@0
    85
	MStreamBuf* host=aHost.Source();
sl@0
    86
	aHost=RReadStream();
sl@0
    87
	RReadStream::Attach(host);		// initial cleanup via this
sl@0
    88
	PushL();
sl@0
    89
sl@0
    90
	CPBDecryptor* decryptor = aKey.NewDecryptLC();
sl@0
    91
	iFilter.SetL(host,decryptor,iFilter.ERead|iFilter.EAttached);
sl@0
    92
	CleanupStack::Pop(decryptor);
sl@0
    93
	
sl@0
    94
	RReadStream::Attach(&iFilter);
sl@0
    95
	}
sl@0
    96
sl@0
    97
//////////////////////////////////////////////////////////////////////////////
sl@0
    98
sl@0
    99
sl@0
   100
sl@0
   101
sl@0
   102
sl@0
   103
EXPORT_C void REncryptStream::OpenL(RWriteStream& aHost,const CPBEncryptionBase& aKey)
sl@0
   104
/**
sl@0
   105
Open an encrypting write stream over aHost.
sl@0
   106
Prepares the target stream owned by the specified write stream interface object for 
sl@0
   107
writing through an encrypting filter.
sl@0
   108
@publishedPartner
sl@0
   109
@leave KErrNoMemory
sl@0
   110
@param aHost The write stream interface object for the target stream. The function does not take ownership of the target stream.
sl@0
   111
@param aKey A Password Based Encryption object for encryption handling.
sl@0
   112
*/
sl@0
   113
	{
sl@0
   114
	CPBEncryptor* encryptor = aKey.NewEncryptLC();
sl@0
   115
	iFilter.SetL(aHost.Sink(),encryptor,iFilter.EWrite);
sl@0
   116
	CleanupStack::Pop(encryptor);
sl@0
   117
	RWriteStream::Attach(&iFilter);
sl@0
   118
    }
sl@0
   119
sl@0
   120
EXPORT_C void REncryptStream::OpenLC(RWriteStream& aHost,const CPBEncryptionBase& aKey)
sl@0
   121
/**
sl@0
   122
Open an encrypting write stream over aHost.
sl@0
   123
Prepares the target stream owned by the specified write stream interface object for 
sl@0
   124
writing through an encrypting filter and puts a cleanup item onto the cleanup stack.
sl@0
   125
@publishedPartner
sl@0
   126
@leave KErrNoMemory
sl@0
   127
@param aHost The write stream interface object for the target stream. The function does not take ownership of the target stream.
sl@0
   128
@param aKey A Password Based Encryption object for encryption handling.
sl@0
   129
*/
sl@0
   130
	{
sl@0
   131
	OpenL(aHost,aKey);
sl@0
   132
	PushL();
sl@0
   133
	}
sl@0
   134
sl@0
   135
EXPORT_C void REncryptStream::AttachL(RWriteStream& aHost,const CPBEncryptionBase& aKey)
sl@0
   136
/**
sl@0
   137
Attach an encrypting write stream to aHost.
sl@0
   138
Takes ownership of the target stream owned by the specified write stream interface object, 
sl@0
   139
and prepares the stream for writing through an encrypting filter.
sl@0
   140
@publishedPartner
sl@0
   141
@leave KErrNoMemory
sl@0
   142
@param aHost The write stream interface object for the target stream
sl@0
   143
@param aKey A Password Based Encryption object for encryption handling.
sl@0
   144
*/
sl@0
   145
	{
sl@0
   146
	AttachLC(aHost,aKey);
sl@0
   147
	CleanupStack::Pop();
sl@0
   148
	}
sl@0
   149
sl@0
   150
EXPORT_C void REncryptStream::AttachLC(RWriteStream& aHost,const CPBEncryptionBase& aKey)
sl@0
   151
/**
sl@0
   152
Attach an encrypting write stream to aHost.
sl@0
   153
Takes ownership of the target stream owned by the specified write stream interface object, 
sl@0
   154
prepares the stream for writing through an encrypting filter, and puts a cleanup item onto the cleanup stack.
sl@0
   155
@publishedPartner
sl@0
   156
@leave KErrNoMemory
sl@0
   157
@param aHost The write stream interface object for the target stream
sl@0
   158
@param aKey A Password Based Encryption object for encryption handling.
sl@0
   159
*/
sl@0
   160
	{
sl@0
   161
	MStreamBuf* host=aHost.Sink();
sl@0
   162
	aHost=RWriteStream();
sl@0
   163
	RWriteStream::Attach(host);		// initial cleanup via this
sl@0
   164
	PushL();
sl@0
   165
sl@0
   166
	CPBEncryptor* encryptor = aKey.NewEncryptLC();
sl@0
   167
	iFilter.SetL(host,encryptor,iFilter.EWrite|iFilter.EAttached);
sl@0
   168
	CleanupStack::Pop(encryptor);
sl@0
   169
	
sl@0
   170
	RWriteStream::Attach(&iFilter);
sl@0
   171
	}
sl@0
   172
sl@0
   173
/////////////////////////////////////////////////////////////////////////
sl@0
   174
// PBE data methods that depend on store, prevents static dependency
sl@0
   175
/////////////////////////////////////////////////////////////////////////
sl@0
   176
sl@0
   177
// CPBEncryptionData
sl@0
   178
sl@0
   179
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   180
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   181
CPBEncryptionData::CPBEncryptionData(void)
sl@0
   182
	{
sl@0
   183
	}
sl@0
   184
sl@0
   185
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   186
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   187
CPBEncryptionData::~CPBEncryptionData(void)
sl@0
   188
	{
sl@0
   189
	delete iParms;
sl@0
   190
	delete iAuth;
sl@0
   191
	}
sl@0
   192
sl@0
   193
EXPORT_C CPBEncryptionData* CPBEncryptionData::NewL(RReadStream& aStream)
sl@0
   194
	{
sl@0
   195
	CPBEncryptionData* self = NewLC(aStream);
sl@0
   196
	CleanupStack::Pop(self);
sl@0
   197
	return self;
sl@0
   198
	}
sl@0
   199
sl@0
   200
EXPORT_C CPBEncryptionData* CPBEncryptionData::NewLC(RReadStream& aStream)
sl@0
   201
	{
sl@0
   202
	CPBEncryptionData* self = new(ELeave)CPBEncryptionData();
sl@0
   203
	CleanupStack::PushL(self);
sl@0
   204
	self->ConstructL(aStream);
sl@0
   205
	return self;
sl@0
   206
	}
sl@0
   207
sl@0
   208
void CPBEncryptionData::ConstructL(RReadStream& aStream)
sl@0
   209
	{
sl@0
   210
	iAuth = CPBAuthData::NewL(aStream);
sl@0
   211
	iParms = CPBEncryptParms::NewL(aStream);
sl@0
   212
	}
sl@0
   213
sl@0
   214
EXPORT_C void CPBEncryptionData::ExternalizeL(RWriteStream& aStream) const
sl@0
   215
	{
sl@0
   216
	iAuth->ExternalizeL(aStream);
sl@0
   217
	iParms->ExternalizeL(aStream);
sl@0
   218
	}
sl@0
   219
sl@0
   220
// CPBEncryptParms
sl@0
   221
sl@0
   222
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   223
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   224
CPBEncryptParms::CPBEncryptParms()
sl@0
   225
	{
sl@0
   226
	}
sl@0
   227
sl@0
   228
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   229
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   230
CPBEncryptParms::~CPBEncryptParms()
sl@0
   231
	{
sl@0
   232
#ifdef SYMBIAN_PKCS12
sl@0
   233
	delete iData;
sl@0
   234
#endif	// #ifdef SYMBIAN_PKCS12
sl@0
   235
	delete iSalt;
sl@0
   236
	delete iIV;
sl@0
   237
	}
sl@0
   238
sl@0
   239
EXPORT_C CPBEncryptParms* CPBEncryptParms::NewL(RReadStream& aStream)
sl@0
   240
	{
sl@0
   241
	CPBEncryptParms* self = NewLC(aStream);
sl@0
   242
	CleanupStack::Pop(self);
sl@0
   243
	return self;
sl@0
   244
	}
sl@0
   245
sl@0
   246
EXPORT_C CPBEncryptParms* CPBEncryptParms::NewLC(RReadStream& aStream)
sl@0
   247
	{
sl@0
   248
	CPBEncryptParms* self = new(ELeave)CPBEncryptParms();
sl@0
   249
	CleanupStack::PushL(self);
sl@0
   250
	self->ConstructL(aStream);
sl@0
   251
	return self;
sl@0
   252
	}
sl@0
   253
sl@0
   254
#ifdef SYMBIAN_PKCS12
sl@0
   255
sl@0
   256
void CPBEncryptParms::ConstructL(RReadStream& aStream) 
sl@0
   257
	{
sl@0
   258
	iData = new(ELeave) TParamsData;
sl@0
   259
	
sl@0
   260
	TCardinality cipher;
sl@0
   261
	aStream >> cipher;
sl@0
   262
	TInt32 cipherInt32 = (TInt32) cipher;
sl@0
   263
	iData->iCipher = (TPBECipher)(cipherInt32 & ~KBit16);
sl@0
   264
	
sl@0
   265
	// if bit 16 of the stored cipher is set, then a KDF
sl@0
   266
	// follows.  (This preserves data compatability.)
sl@0
   267
	if ((cipherInt32 & KBit16) == 0)
sl@0
   268
		iData->iKdf = EKdfPkcs5;
sl@0
   269
	else
sl@0
   270
		{
sl@0
   271
		TInt32 kdf;
sl@0
   272
		aStream >> kdf;
sl@0
   273
		iData->iKdf = (TKdf) kdf;
sl@0
   274
		}
sl@0
   275
sl@0
   276
	iSalt = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   277
sl@0
   278
	TCardinality iterations;
sl@0
   279
	aStream >> iterations;
sl@0
   280
	iIterations = iterations;
sl@0
   281
sl@0
   282
	iIV = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   283
	}
sl@0
   284
sl@0
   285
#else
sl@0
   286
sl@0
   287
void CPBEncryptParms::ConstructL(RReadStream& aStream) 
sl@0
   288
	{
sl@0
   289
	TCardinality cipher;
sl@0
   290
	aStream >> cipher;
sl@0
   291
	iCipher = (TPBECipher)((TUint)(cipher));
sl@0
   292
sl@0
   293
	iSalt = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   294
sl@0
   295
	TCardinality iterations;
sl@0
   296
	aStream >> iterations;
sl@0
   297
	iIterations = iterations;
sl@0
   298
sl@0
   299
	iIV = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   300
	}
sl@0
   301
sl@0
   302
#endif	// #else #ifdef SYMBIAN_PKCS12
sl@0
   303
sl@0
   304
#ifdef SYMBIAN_PKCS12
sl@0
   305
sl@0
   306
EXPORT_C void CPBEncryptParms::ExternalizeL(RWriteStream& aStream) const
sl@0
   307
	{
sl@0
   308
	TUint32 cipherInt32 = iData->iCipher;
sl@0
   309
	if (iData->iKdf != EKdfPkcs5)
sl@0
   310
		cipherInt32 |= KBit16;
sl@0
   311
	aStream << TCardinality(cipherInt32);
sl@0
   312
	
sl@0
   313
	if (iData->iKdf != EKdfPkcs5)
sl@0
   314
		aStream << (TInt32) iData->iKdf;
sl@0
   315
	
sl@0
   316
	aStream << *iSalt;
sl@0
   317
	aStream << TCardinality(iIterations);
sl@0
   318
	aStream << *iIV;
sl@0
   319
	}
sl@0
   320
sl@0
   321
#else
sl@0
   322
sl@0
   323
EXPORT_C void CPBEncryptParms::ExternalizeL(RWriteStream& aStream) const
sl@0
   324
	{
sl@0
   325
	aStream << TCardinality((TUint)iCipher);
sl@0
   326
	aStream << *iSalt;
sl@0
   327
	aStream << TCardinality(iIterations);
sl@0
   328
	aStream << *iIV;
sl@0
   329
	}
sl@0
   330
sl@0
   331
#endif	// #else #ifdef SYMBIAN_PKCS12
sl@0
   332
sl@0
   333
// CPBAuthData
sl@0
   334
sl@0
   335
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   336
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   337
CPBAuthData::CPBAuthData()
sl@0
   338
	{
sl@0
   339
	}
sl@0
   340
sl@0
   341
// HPRE-5TDFK2: Remove Store/estor.dll dependency on Cryptography/pbe.dll
sl@0
   342
// This method is DUPLICATED in common/generic/security/crypto/source/pbe/pbedata.cpp
sl@0
   343
CPBAuthData::~CPBAuthData()
sl@0
   344
	{
sl@0
   345
	delete iAuthKey;
sl@0
   346
	delete iSalt;
sl@0
   347
	}
sl@0
   348
sl@0
   349
EXPORT_C CPBAuthData* CPBAuthData::NewL(RReadStream& aStream)
sl@0
   350
	{
sl@0
   351
	CPBAuthData* self = NewLC(aStream);
sl@0
   352
	CleanupStack::Pop(self);
sl@0
   353
	return self;
sl@0
   354
	}
sl@0
   355
sl@0
   356
EXPORT_C CPBAuthData* CPBAuthData::NewLC(RReadStream& aStream)
sl@0
   357
	{
sl@0
   358
	CPBAuthData* self = new(ELeave)CPBAuthData();
sl@0
   359
	CleanupStack::PushL(self);
sl@0
   360
	self->ConstructL(aStream);
sl@0
   361
	return self;
sl@0
   362
	}
sl@0
   363
sl@0
   364
void CPBAuthData::ConstructL(RReadStream& aStream)
sl@0
   365
	{
sl@0
   366
	iAuthKey = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   367
	iSalt = HBufC8::NewL(aStream, KMaxTInt);
sl@0
   368
	TCardinality iterations;
sl@0
   369
	aStream >> iterations;
sl@0
   370
	iIterations = iterations;
sl@0
   371
	}
sl@0
   372
sl@0
   373
EXPORT_C void CPBAuthData::ExternalizeL(RWriteStream& aStream) const
sl@0
   374
	{
sl@0
   375
	aStream << *iAuthKey;
sl@0
   376
	aStream << *iSalt;
sl@0
   377
	aStream << TCardinality(iIterations);
sl@0
   378
	}