os/persistentdata/persistentstorage/store/INC/S32CRYPT.H
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
#if !defined(__S32CRYPT_H__)
sl@0
    17
#define __S32CRYPT_H__
sl@0
    18
#if !defined(__S32BUF_H__)
sl@0
    19
#include <s32buf.h>
sl@0
    20
#endif
sl@0
    21
#if !defined(__S32STOR_H__)
sl@0
    22
#include <s32stor.h>
sl@0
    23
#endif
sl@0
    24
sl@0
    25
class CPBEncryptor;
sl@0
    26
class CPBDecryptor;
sl@0
    27
class CPBEncryptionBase;
sl@0
    28
class CPBEncryptSet;
sl@0
    29
sl@0
    30
const TInt KEncryptionFilterBufSize=160;
sl@0
    31
sl@0
    32
/**
sl@0
    33
 * @publishedPartner 
sl@0
    34
 * @released
sl@0
    35
 * Base class used in the derivation of TEncryptFilter and TDecryptFilter. 
sl@0
    36
sl@0
    37
It has no user accessible functions.
sl@0
    38
sl@0
    39
@see TEncryptFilter
sl@0
    40
@see TDecryptFilter  
sl@0
    41
*/
sl@0
    42
class TSecureFilter : public TStreamFilter
sl@0
    43
	{
sl@0
    44
protected:
sl@0
    45
	TSecureFilter();
sl@0
    46
	void Set(MStreamBuf* aHost,TInt aMode=EWrite);
sl@0
    47
protected:
sl@0
    48
	IMPORT_C TInt Capacity(TInt aMaxLength);
sl@0
    49
	IMPORT_C TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd);
sl@0
    50
	IMPORT_C void DoSynchL();
sl@0
    51
	TInt EmitL(const TDesC8& aDes);
sl@0
    52
private:
sl@0
    53
	virtual TInt CryptL(TDes8& aTarget,const TDesC8& aSource) =0;
sl@0
    54
	virtual void CompleteL(TDes8& aTarget,const TDesC8& aSource) =0;
sl@0
    55
private:
sl@0
    56
	TBuf8<KEncryptionFilterBufSize> iIn;
sl@0
    57
	TPtrC8 iOut;
sl@0
    58
	TUint8 iBuf[KEncryptionFilterBufSize];
sl@0
    59
	};
sl@0
    60
sl@0
    61
/**
sl@0
    62
 * @publishedPartner 
sl@0
    63
 * @released
sl@0
    64
 * An encrypting filter.
sl@0
    65
sl@0
    66
An object of this type is used by REncryptStream to encrypt stream data as 
sl@0
    67
it is written to a target stream.
sl@0
    68
sl@0
    69
Encryption itself is performed by an instance of a class implementing the 
sl@0
    70
CPBEncryptor interface.
sl@0
    71
sl@0
    72
@see REncryptStream
sl@0
    73
@see CPBEncryptor  
sl@0
    74
*/
sl@0
    75
class TEncryptFilter : public TSecureFilter
sl@0
    76
	{
sl@0
    77
public:
sl@0
    78
	IMPORT_C TEncryptFilter();
sl@0
    79
//	New function, recommended
sl@0
    80
	IMPORT_C void SetL(MStreamBuf* aHost,CPBEncryptor* aKey,TInt aMode=EWrite);
sl@0
    81
protected:
sl@0
    82
	IMPORT_C void DoRelease();
sl@0
    83
private:
sl@0
    84
	IMPORT_C TInt CryptL(TDes8& aTarget,const TDesC8& aSource);
sl@0
    85
	IMPORT_C void CompleteL(TDes8& aTarget,const TDesC8& aSource);
sl@0
    86
private:
sl@0
    87
    CPBEncryptor* iKey;
sl@0
    88
	};
sl@0
    89
sl@0
    90
/**
sl@0
    91
 * @publishedPartner 
sl@0
    92
 * @released
sl@0
    93
 * A decrypting filter.
sl@0
    94
sl@0
    95
An object of this type is used by RDecryptStream to decrypt stream data as 
sl@0
    96
it is read from a source stream.
sl@0
    97
sl@0
    98
Decryption itself is performed by an instance of a class implementing the 
sl@0
    99
CPBDecryptor interface.
sl@0
   100
sl@0
   101
@see RDecryptStream
sl@0
   102
@see CSecureStore
sl@0
   103
@see CPBDecryptor  
sl@0
   104
*/
sl@0
   105
class TDecryptFilter : public TSecureFilter
sl@0
   106
	{
sl@0
   107
public:
sl@0
   108
	IMPORT_C TDecryptFilter();
sl@0
   109
//	New function, recommended	
sl@0
   110
	IMPORT_C void SetL(MStreamBuf* aHost,CPBDecryptor* aKey,TInt aMode=ERead);
sl@0
   111
protected:
sl@0
   112
	IMPORT_C void DoRelease();
sl@0
   113
private:
sl@0
   114
	IMPORT_C TInt CryptL(TDes8& aTarget,const TDesC8& aSource);
sl@0
   115
	IMPORT_C void CompleteL(TDes8& aTarget,const TDesC8& aSource);
sl@0
   116
private:
sl@0
   117
    CPBDecryptor* iKey;
sl@0
   118
	};
sl@0
   119
sl@0
   120
/**
sl@0
   121
 * @publishedPartner 
sl@0
   122
 * @released
sl@0
   123
 * Supports the decrypting of a stream.
sl@0
   124
sl@0
   125
The stream to be decrypted is a stream represented by an existing RReadStream 
sl@0
   126
object. In effect, RDecryptStream forms a layer over the RReadStream object, 
sl@0
   127
either using its source stream buffer or taking complete ownership of the 
sl@0
   128
source stream buffer.
sl@0
   129
sl@0
   130
Decryption of streamed data is supported using the TDecryptFilter class derived 
sl@0
   131
from TStreamFilter. Decryption itself is performed by an instance of a class 
sl@0
   132
implementing the CPBEncryptionBase interface.
sl@0
   133
sl@0
   134
@see TDecryptFilter
sl@0
   135
@see TStreamFilter
sl@0
   136
@see CPBEncryptionBase
sl@0
   137
*/
sl@0
   138
class RDecryptStream : public RReadStream
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	/** Constructs an empty decrypting stream object.
sl@0
   142
	
sl@0
   143
	Call OpenL() or OpenLC() to use a source stream owned by an existing read 
sl@0
   144
	stream interface object, a RReadStream. 
sl@0
   145
	
sl@0
   146
	Call AttachL() or AttachLC() to use and take ownership of a source stream 
sl@0
   147
	owned by an existing read stream interface object. */
sl@0
   148
	RDecryptStream() {}
sl@0
   149
public:	//	Original functions, now deprecated
sl@0
   150
public:	//	New functions, using Password Based Encryption
sl@0
   151
	IMPORT_C void OpenL(RReadStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   152
	IMPORT_C void OpenLC(RReadStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   153
	IMPORT_C void AttachL(RReadStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   154
	IMPORT_C void AttachLC(RReadStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   155
private:
sl@0
   156
	TDecryptFilter iFilter;
sl@0
   157
	};
sl@0
   158
sl@0
   159
/**
sl@0
   160
 * @publishedPartner 
sl@0
   161
 * @released
sl@0
   162
 * Supports the encryption of a stream.
sl@0
   163
sl@0
   164
The stream to be encrypted is a stream represented by an existing RWriteStream 
sl@0
   165
object. In effect, REncryptStream forms a layer over the RWriteStream object, 
sl@0
   166
either using its target stream buffer or taking complete ownership of the 
sl@0
   167
target stream buffer.
sl@0
   168
sl@0
   169
Encryption of streamed data is supported using the TEncryptFilter class derived 
sl@0
   170
from TStreamFilter. Encryption itself is performed by an instance of a class 
sl@0
   171
implementing the CPBEncryptionBase interface.
sl@0
   172
sl@0
   173
@see TEncryptFilter
sl@0
   174
@see TStreamFilter
sl@0
   175
@see CPBEncryptionBase
sl@0
   176
*/
sl@0
   177
class REncryptStream : public RWriteStream
sl@0
   178
	{
sl@0
   179
public:
sl@0
   180
	/** Constructs an empty encrypting stream object.
sl@0
   181
	
sl@0
   182
	Call OpenL() or OpenLC() to use a target stream owned by an existing write 
sl@0
   183
	stream interface object, a RWriteStream. 
sl@0
   184
	
sl@0
   185
	Call AttachL() or AttachLC() to use and take ownership of a target stream 
sl@0
   186
	owned by an existing write stream interface object. */
sl@0
   187
	REncryptStream() {}
sl@0
   188
	inline REncryptStream(const MExternalizer<TStreamRef>& anExter);
sl@0
   189
public:	//	Original functions, now deprecated
sl@0
   190
public:	//	New functions, using Password Based Encryption
sl@0
   191
	IMPORT_C void OpenL(RWriteStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   192
	IMPORT_C void OpenLC(RWriteStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   193
	IMPORT_C void AttachL(RWriteStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   194
	IMPORT_C void AttachLC(RWriteStream& aHost,const CPBEncryptionBase& aKey);
sl@0
   195
private:
sl@0
   196
	TEncryptFilter iFilter;
sl@0
   197
	};
sl@0
   198
//
sl@0
   199
sl@0
   200
sl@0
   201
class HEncryptFilter;
sl@0
   202
sl@0
   203
/**
sl@0
   204
@publishedPartner 
sl@0
   205
@released
sl@0
   206
A stream store whose streams are encrypted.
sl@0
   207
sl@0
   208
The secure store is layered over another stream store which acts as the host 
sl@0
   209
for the encrypted streams. This stream store is not owned by the secure store, 
sl@0
   210
which means that it is possible to to use the secure store to store only a 
sl@0
   211
portion of the streams in encrypted form.
sl@0
   212
 
sl@0
   213
Access to the streams in this store is via the normal RStoreWriteStream and 
sl@0
   214
RStoreReadStream classes. Internally, TEncryptFilter and TDecryptFilter objects 
sl@0
   215
are attached to the streams from the host store in order to do the encryption 
sl@0
   216
and decryption.
sl@0
   217
   
sl@0
   218
@see RStoreWriteStream
sl@0
   219
@see RStoreReadStream
sl@0
   220
@see TEncryptFilter
sl@0
   221
@see TDecryptFilter  
sl@0
   222
*/
sl@0
   223
class CSecureStore : public CStreamStore
sl@0
   224
	{
sl@0
   225
public://	Original functions, now deprecated
sl@0
   226
public://	New functions using PBE
sl@0
   227
	IMPORT_C static CSecureStore* NewL(CStreamStore& aHost,const CPBEncryptSet& aKey);
sl@0
   228
	IMPORT_C static CSecureStore* NewLC(CStreamStore& aHost,const CPBEncryptSet& aKey);
sl@0
   229
	CSecureStore(CStreamStore& aHost,const CPBEncryptSet& aKey);
sl@0
   230
protected:
sl@0
   231
	IMPORT_C MStreamBuf* DoReadL(TStreamId anId) const;
sl@0
   232
	IMPORT_C MStreamBuf* DoCreateL(TStreamId& anId);
sl@0
   233
	IMPORT_C TStreamId DoExtendL();
sl@0
   234
	IMPORT_C void DoDeleteL(TStreamId anId);
sl@0
   235
	IMPORT_C MStreamBuf* DoWriteL(TStreamId anId);
sl@0
   236
	IMPORT_C MStreamBuf* DoReplaceL(TStreamId anId);
sl@0
   237
	IMPORT_C void DoCommitL();
sl@0
   238
	IMPORT_C void DoRevertL();
sl@0
   239
private:
sl@0
   240
	inline CStreamStore& Host();
sl@0
   241
	inline const CStreamStore& Host() const;
sl@0
   242
	inline const CPBEncryptSet& PBEKey() const;
sl@0
   243
	void setEncryptFilterL(HEncryptFilter& aFilter, RStoreWriteStream& aStream);	
sl@0
   244
private:
sl@0
   245
	CStreamStore* iHost;
sl@0
   246
	const CPBEncryptSet& iKey;
sl@0
   247
	};
sl@0
   248
sl@0
   249
//
sl@0
   250
sl@0
   251
/**
sl@0
   252
 * @publishedPartner 
sl@0
   253
 * @released
sl@0
   254
 * Uses an encrypted store to implement the page pool interface MPagePool.
sl@0
   255
sl@0
   256
A secure store page pool uses a cache to store pages in-memory and to cache 
sl@0
   257
frequently accessed pages. You should provide a cache object (CPageCache) 
sl@0
   258
to the pool for this purpose.
sl@0
   259
sl@0
   260
@see CPageCache  
sl@0
   261
*/
sl@0
   262
class RSecureStorePagePool : public RStorePagePool
sl@0
   263
	{
sl@0
   264
public://	Original functions, now deprecated
sl@0
   265
public://	New functions using PBE
sl@0
   266
	IMPORT_C RSecureStorePagePool(const CPBEncryptSet& aKey);
sl@0
   267
	IMPORT_C RSecureStorePagePool(CPageCache& aCache, const CPBEncryptSet& aKey);
sl@0
   268
protected:
sl@0
   269
	IMPORT_C TPageRef ExtendL(const TAny* aPage,TPageReclamation aReclamation);
sl@0
   270
	IMPORT_C void WriteL(TPageRef aRef,const TAny* aPage,TPageChange aChange);
sl@0
   271
	IMPORT_C void ReadL(TPageRef aRef,TAny* aPage);
sl@0
   272
	IMPORT_C void DoDeleteL(TPageRef aRef);
sl@0
   273
private:
sl@0
   274
	const CPBEncryptSet& iKey;
sl@0
   275
	};
sl@0
   276
sl@0
   277
sl@0
   278
#include <s32crypt.inl>
sl@0
   279
#endif