First public contribution.
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Contains the WSD solution
20 #define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
26 #include "wsd_solution.h"
27 #include "pls.h" // For emulator WSD API
29 const TUid KLibdlUid3 = {0x10281F2D};
31 LOCAL_C TInt InitializeWsd(TLibcryptWsd *aData)
33 unsigned int bits32Initializer[32] =
35 0x80000000, 0x40000000, 0x20000000, 0x10000000,
36 0x08000000, 0x04000000, 0x02000000, 0x01000000,
37 0x00800000, 0x00400000, 0x00200000, 0x00100000,
38 0x00080000, 0x00040000, 0x00020000, 0x00010000,
39 0x00008000, 0x00004000, 0x00002000, 0x00001000,
40 0x00000800, 0x00000400, 0x00000200, 0x00000100,
41 0x00000080, 0x00000040, 0x00000020, 0x00000010,
42 0x00000008, 0x00000004, 0x00000002, 0x00000001
44 aData->des_initialised = 0;
49 aData->ip_maskl = NULL;
50 aData->ip_maskr = NULL;
52 aData->fp_maskl = NULL;
53 aData->fp_maskr = NULL;
55 aData->key_perm_maskl = NULL;
56 aData->key_perm_maskr = NULL;
58 aData->comp_maskl = NULL;
59 aData->comp_maskr = NULL;
61 aData->old_rawkey0 = 0;
62 aData->old_rawkey1 = 0;
64 for(int i=0 ; i<32 ; ++i)
66 (aData->bits32)[i] = bits32Initializer[i];
69 // Initialize desKey array
70 for(int j=0 ; j<64 ; ++j)
72 (aData->desKey)[j] = 0;
74 aData->bSetkeyInvoked = 0;
79 extern "C" TLibcryptWsd* GetGlobals()
81 // Access the PLS of this process
82 TLibcryptWsd *p = Pls<TLibcryptWsd>(KLibdlUid3,InitializeWsd);