os/persistentdata/persistentstorage/store/UCRYPT/UE_STOR.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
#ifndef __TOOLS2__
sl@0
    21
#include "pbencryptor.h"
sl@0
    22
#endif
sl@0
    23
sl@0
    24
sl@0
    25
EXPORT_C CSecureStore* CSecureStore::NewL(CStreamStore& aHost,const CPBEncryptSet& aKey)
sl@0
    26
/**
sl@0
    27
Instantiates a secure store.
sl@0
    28
sl@0
    29
@leave KErrNoMemory
sl@0
    30
@param aHost The stream store acting as host for the secure store's streams.
sl@0
    31
@param aKey A Password Based Encryption Object used to generate decryption and encryption 
sl@0
    32
handling objects. Ownership of this object remains with the caller who should delete it when it is no longer needed.
sl@0
    33
sl@0
    34
@return A pointer to the new secure store object.
sl@0
    35
*/
sl@0
    36
	{
sl@0
    37
	return new(ELeave) CSecureStore(aHost,aKey);
sl@0
    38
	}
sl@0
    39
sl@0
    40
EXPORT_C CSecureStore* CSecureStore::NewLC(CStreamStore& aHost,const CPBEncryptSet& aKey)
sl@0
    41
/**
sl@0
    42
Instantiates a secure store and pushes a pointer to the object onto the cleanup stack.
sl@0
    43
sl@0
    44
@leave KErrNoMemory
sl@0
    45
@param aHost The stream store acting as host for the secure store's streams.
sl@0
    46
@param aKey A Password Based Encryption Object used to generate decryption and encryption 
sl@0
    47
handling objects. Ownership of this object remains with the caller who should delete it when it is no longer needed.
sl@0
    48
sl@0
    49
@return A pointer to the new secure store object.
sl@0
    50
*/
sl@0
    51
	{
sl@0
    52
	CSecureStore* store=NewL(aHost,aKey);
sl@0
    53
	CleanupStack::PushL(store);
sl@0
    54
	return store;
sl@0
    55
	}
sl@0
    56
sl@0
    57
//	Not exported
sl@0
    58
CSecureStore::CSecureStore(CStreamStore& aHost,const CPBEncryptSet& aKey)
sl@0
    59
	: iHost(&aHost),
sl@0
    60
    iKey(aKey)
sl@0
    61
	{}
sl@0
    62
sl@0
    63
//
sl@0
    64
// Open a stream for reading from the buffer at anId.
sl@0
    65
//
sl@0
    66
EXPORT_C MStreamBuf* CSecureStore::DoReadL(TStreamId anId) const
sl@0
    67
	{
sl@0
    68
	HDecryptFilter* filter=new(ELeave) HDecryptFilter;
sl@0
    69
	CleanupDeletePushL(filter);
sl@0
    70
	RStoreReadStream stream;
sl@0
    71
	stream.OpenLC(Host(),anId);
sl@0
    72
	
sl@0
    73
	CPBDecryptor* decryptor=iKey.NewDecryptLC();
sl@0
    74
	filter->SetL(stream.Source(),decryptor,filter->ERead|filter->EAttached);
sl@0
    75
   		
sl@0
    76
	CleanupStack::Pop(3, filter);	//	decryptor, stream, filter 
sl@0
    77
	return filter;
sl@0
    78
	}
sl@0
    79
sl@0
    80
//	Determine key type and create appropriate encryptor
sl@0
    81
void CSecureStore::setEncryptFilterL(HEncryptFilter& aFilter, RStoreWriteStream& aStream)
sl@0
    82
	{
sl@0
    83
	CPBEncryptor* encryptor=iKey.NewEncryptLC();
sl@0
    84
	aFilter.SetL(aStream.Sink(),encryptor,aFilter.EWrite|aFilter.EAttached);
sl@0
    85
	CleanupStack::Pop(encryptor);
sl@0
    86
	}
sl@0
    87
sl@0
    88
//
sl@0
    89
// Create a new buffer and open a stream for writing to it.
sl@0
    90
//
sl@0
    91
EXPORT_C MStreamBuf* CSecureStore::DoCreateL(TStreamId& anId)
sl@0
    92
	{
sl@0
    93
	HEncryptFilter* filter=new(ELeave) HEncryptFilter;
sl@0
    94
	CleanupDeletePushL(filter);
sl@0
    95
	RStoreWriteStream stream;
sl@0
    96
	anId=stream.CreateLC(Host());
sl@0
    97
	setEncryptFilterL(*filter, stream);
sl@0
    98
	CleanupStack::Pop(2);	//	stream, filter
sl@0
    99
	return filter;
sl@0
   100
	}
sl@0
   101
sl@0
   102
EXPORT_C TStreamId CSecureStore::DoExtendL()
sl@0
   103
	{
sl@0
   104
	return Host().ExtendL();
sl@0
   105
	}
sl@0
   106
sl@0
   107
EXPORT_C void CSecureStore::DoDeleteL(TStreamId anId)
sl@0
   108
	{
sl@0
   109
	Host().DeleteL(anId);
sl@0
   110
	}
sl@0
   111
sl@0
   112
EXPORT_C MStreamBuf* CSecureStore::DoWriteL(TStreamId anId)
sl@0
   113
	{
sl@0
   114
	HEncryptFilter* filter=new(ELeave) HEncryptFilter;
sl@0
   115
	CleanupDeletePushL(filter);
sl@0
   116
	RStoreWriteStream stream;
sl@0
   117
	stream.OpenLC(Host(), anId);
sl@0
   118
	setEncryptFilterL(*filter, stream);
sl@0
   119
	CleanupStack::Pop(2);	//	stream, filter
sl@0
   120
	return filter;	
sl@0
   121
	}
sl@0
   122
sl@0
   123
EXPORT_C MStreamBuf* CSecureStore::DoReplaceL(TStreamId anId)
sl@0
   124
	{
sl@0
   125
	HEncryptFilter* filter=new(ELeave) HEncryptFilter;
sl@0
   126
	CleanupDeletePushL(filter);
sl@0
   127
	RStoreWriteStream stream;
sl@0
   128
	stream.ReplaceLC(Host(), anId);
sl@0
   129
	setEncryptFilterL(*filter, stream);
sl@0
   130
	CleanupStack::Pop(2);	//	stream, filter
sl@0
   131
	return filter;	
sl@0
   132
	}
sl@0
   133
sl@0
   134
EXPORT_C void CSecureStore::DoCommitL()
sl@0
   135
	{
sl@0
   136
	Host().CommitL();
sl@0
   137
	}
sl@0
   138
sl@0
   139
EXPORT_C void CSecureStore::DoRevertL()
sl@0
   140
	{
sl@0
   141
	Host().RevertL();
sl@0
   142
	}