os/ossrv/stdlibs/libcrypt/src/wsd_solution.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdlibs/libcrypt/src/wsd_solution.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,86 @@
     1.4 +/*
     1.5 +* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:  Contains the WSD solution
    1.18 + *
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +// INCLUDE FILES
    1.23 +#define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
    1.24 +
    1.25 +#if EMULATOR
    1.26 +
    1.27 +#include <e32std.h>
    1.28 +
    1.29 +#include "wsd_solution.h"
    1.30 +#include "pls.h" // For emulator WSD API 
    1.31 +
    1.32 +const TUid KLibdlUid3 = {0x10281F2D};
    1.33 +
    1.34 +LOCAL_C TInt InitializeWsd(TLibcryptWsd *aData)
    1.35 +{
    1.36 +	unsigned int bits32Initializer[32] = 
    1.37 +	{
    1.38 +		0x80000000, 0x40000000, 0x20000000, 0x10000000,
    1.39 +		0x08000000, 0x04000000, 0x02000000, 0x01000000,
    1.40 +		0x00800000, 0x00400000, 0x00200000, 0x00100000,
    1.41 +		0x00080000, 0x00040000, 0x00020000, 0x00010000,
    1.42 +		0x00008000, 0x00004000, 0x00002000, 0x00001000,
    1.43 +		0x00000800, 0x00000400, 0x00000200, 0x00000100,
    1.44 +		0x00000080, 0x00000040, 0x00000020, 0x00000010,
    1.45 +		0x00000008, 0x00000004, 0x00000002, 0x00000001
    1.46 +	};
    1.47 +	aData->des_initialised = 0;
    1.48 +	
    1.49 +	aData->m_sbox = NULL;
    1.50 +	aData->psbox = NULL;
    1.51 +	
    1.52 +	aData->ip_maskl = NULL;
    1.53 +	aData->ip_maskr = NULL;
    1.54 +	
    1.55 +	aData->fp_maskl = NULL;
    1.56 +	aData->fp_maskr = NULL;
    1.57 +	
    1.58 +	aData->key_perm_maskl = NULL;
    1.59 +	aData->key_perm_maskr = NULL;
    1.60 +	
    1.61 +	aData->comp_maskl = NULL;
    1.62 +	aData->comp_maskr = NULL;
    1.63 +	
    1.64 +	aData->old_rawkey0 = 0;
    1.65 +	aData->old_rawkey1 = 0;
    1.66 +	
    1.67 +	for(int i=0 ; i<32 ; ++i)
    1.68 +	{
    1.69 +		(aData->bits32)[i] = bits32Initializer[i];
    1.70 +	}
    1.71 +	
    1.72 +	// Initialize desKey array
    1.73 +	for(int j=0 ; j<64 ; ++j)
    1.74 +	{
    1.75 +		(aData->desKey)[j] = 0;
    1.76 +	}
    1.77 +	aData->bSetkeyInvoked = 0;
    1.78 +	
    1.79 +	return KErrNone;
    1.80 +}
    1.81 +
    1.82 +extern "C" TLibcryptWsd* GetGlobals()
    1.83 +{
    1.84 +	// Access the PLS of this process
    1.85 +	TLibcryptWsd *p = Pls<TLibcryptWsd>(KLibdlUid3,InitializeWsd);
    1.86 +	return p;
    1.87 +}
    1.88 +
    1.89 +#endif