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 implementation for encryption/decryption.
21 #define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
29 // EXTERNAL FUNCTION PROTOTYPES
30 extern "C" char *crypt_des(const char *key, const char *setting);
31 extern "C" char *crypt_md5(const char *pw, const char *salt);
33 // LOCAL CONSTANTS AND MACROS
40 TBuf8<BYTE_SIZE> desKey; // For persistence between calls
41 // to setkey() and encrypt()
42 static TInt bSetkeyInvoked = 0;
44 #include <sys/types.h>
45 #include "wsd_solution.h"
46 #define bSetkeyInvoked (GetGlobals()->bSetkeyInvoked)
49 // LOCAL FUNCTION PROTOTYPES
50 static unsigned char GetByte(const char *bitVector);
51 static void DesEncryptionL(const TDes8& aKey, TDes8& aInputBlock);
52 static void DesDecryptionL(const TDes8& aKey, TDes8& aInputBlock);
54 // LOCAL class declaration
55 class CEncDecHack : public CBase
58 virtual void Transform(TDes8& aBlock){}
61 typedef CEncDecHack* (*LookupFuncEncDecObjCreator)(const TDesC8& aKey, TBool aCheckWeakKey);
63 _LIT(KCryptoDll,"cryptography.dll");
65 // -----------------------------------------------------------------------------
66 // function_name: _setkey
68 // Prepares a byte array for the key from the contents of the incoming bit vector.
69 // Key thus constructed is statically stored for use during encryption/decryption.
72 // -----------------------------------------------------------------------------
75 void _setkey (const char *key)
78 // Reset the contents of the 'key' descriptor
79 desKey.Delete(0,desKey.Length());
83 // Pack the contents of the bit vector into a TDes derived object
84 for( int i = 0 ; i < BYTE_SIZE ; ++i)
86 desKey.Append( GetByte( &key[i * BYTE_SIZE] ) );
89 for(int i=0 ; i<64 ; ++i)
91 (GetGlobals()->desKey)[i] = key[i];
98 // -----------------------------------------------------------------------------
99 // function_name: _encrypt
101 // Performs either encryption or decryption of the data block. Prior to invoking
102 // Symbian OS cryptography APIs for encryptions/decryption, this function
103 // packs the contents of the bit vector into a byte array of size eight. The byte
104 // array obtained after encryption/decryption is unpacked to present the output
105 // in the form of a bit vector. The incoming data block is modified in place
106 // during the process.
108 // Assumption: User of the libcrypt library is expected the create a cleanupstack
111 // -----------------------------------------------------------------------------
114 void _encrypt (char block[], int edflag)
117 TBuf8<BYTE_SIZE> desKey;
120 // Determine if setkey() is invoked by the user
123 // Initialize the key with default values
124 for(int i = 0 ; i < BYTE_SIZE ; ++i)
126 desKey.Append((unsigned char)0);
133 for(int i=0 ; i<BYTE_SIZE ; ++i)
135 desKey.Append( GetByte( (const char*)&(GetGlobals()->desKey)[i * BYTE_SIZE] ));
140 // Determine whether encryption or decryption is requested
141 if(edflag != ENCRYPTION)
143 if(edflag != DECRYPTION)
145 // Unrecognized flag parameter
151 // Pack the contents of the input bit vector into a "byte" array
152 TBuf8<BYTE_SIZE> inputBlock;
154 for(nIterator = 0 ; nIterator < BYTE_SIZE ; ++nIterator)
156 inputBlock.Append( GetByte( &block[nIterator * BYTE_SIZE] ) );
159 TInt error = KErrNone;
160 typedef void (*DesOperation)(const TDes8&, TDes8&);
161 DesOperation funcOperationL = NULL;
165 case ENCRYPTION: // Encryption
166 funcOperationL = DesEncryptionL;
169 case DECRYPTION: // Decryption
170 funcOperationL = DesDecryptionL;
174 TRAP(error, (*funcOperationL)(desKey, inputBlock));
176 if(error == KErrNone)
178 unsigned char chTemp;
181 // Create the bit vector from the "byte" array (unpack)
182 for(int i = 0 ; i < BYTE_SIZE ; ++i)
184 chTemp = inputBlock[i];
185 for(int j = 0 ; j < BYTE_SIZE ; ++j)
187 block[k++] = ((chTemp & 0x80) >> 7);
194 // Set the errno flag to indicate failure
199 // -----------------------------------------------------------------------------
200 // function_name: _crypt
202 // Uses MD5-based algorithm or DES encryption mechanism to encode a constant
203 // string using "key" as the key. Salt determines the algorithm to be used.
205 // Returns: pointer to a static data buffer containing the encoded "string"
206 // -----------------------------------------------------------------------------
209 char* _crypt (const char *key, const char *salt)
211 // Identify the algorithm to be used as part of crypt
212 if(strstr(salt, "$1$"))
214 // MD5-based algorithm
215 return crypt_md5(key, salt);
219 return crypt_des(key, salt);
223 // -----------------------------------------------------------------------------
224 // function_name: GetByte
226 // Packs the "bits" in the bit vector into a byte
228 // Returns: Byte composed of the bits from the bit vector
229 // -----------------------------------------------------------------------------
231 LOCAL_C unsigned char GetByte(const char *bitVector)
233 unsigned char chTemp = 0;
235 for(int nIterator = 0 ; nIterator < BYTE_SIZE ; ++nIterator)
237 chTemp |= ( bitVector[nIterator] << (BYTE_SIZE - nIterator - 1) );
242 // -----------------------------------------------------------------------------
243 // function_name: DesEncryptionL
245 // Function to encrypt the input data bytes by invoking Symbian OS API for
246 // DES algorithm for encryption
248 // Assumption: 1. BLOCKSIZE within the cryptography library is 8 for
250 // 2. The input key is not checked against a set of known
253 // Returns: void, however, this function leaves if there is insufficient
255 // -----------------------------------------------------------------------------
257 LOCAL_C void DesEncryptionL(const TDes8& aKey, TDes8& aInputBlock)
259 // Construct the encryptor object
260 /* CDESEncryptor *pEncryptor = CDESEncryptor::NewL(aKey, EFalse);
264 User::Leave(KErrNoMemory);
267 // Invoke DES trasnformation to encrypt the input data
268 pEncryptor->Transform(aInputBlock);
273 User::LeaveIfError(library.Load(KCryptoDll));
276 TLibraryFunction func = library.Lookup(102); // CDESEncryptor::NewL
278 TLibraryFunction func = library.Lookup(59); //CDESEncryptor::NewL
279 #endif // ifdef __WINSCW__
284 User::Leave(KErrNotFound);
286 LookupFuncEncDecObjCreator objCreatorFuncion = reinterpret_cast<LookupFuncEncDecObjCreator> (func);
287 CEncDecHack* pEncryptor = reinterpret_cast<CEncDecHack*>(objCreatorFuncion(aKey, EFalse));
288 pEncryptor->Transform(aInputBlock);
293 // -----------------------------------------------------------------------------
294 // function_name: DesDecryptionL
296 // Function to encrypt the input data bytes by invoking Symbian OS API for
297 // DES algorithm for decryption
299 // Assumption: 1. BLOCKSIZE within the cryptography library is 8 for
301 // 2. The input key is not checked against a set of known
304 // Returns: void, however, this function leaves if there is insufficient
306 // -----------------------------------------------------------------------------
308 LOCAL_C void DesDecryptionL(const TDes8& aKey, TDes8& aInputBlock)
310 // Construct the decryptor object
311 /* CDESDecryptor *pDecryptor = CDESDecryptor::NewL(aKey, EFalse);
315 User::Leave(KErrNoMemory);
318 // Invoke DES decryption on the cipher text
319 pDecryptor->Transform(aInputBlock);
324 User::LeaveIfError(library.Load(KCryptoDll));
327 TLibraryFunction func = library.Lookup(101); // CDESDecryptor::NewL
329 TLibraryFunction func = library.Lookup(57); //CDESDecryptor::NewL
330 #endif // ifdef __WINSCW
337 LookupFuncEncDecObjCreator objCreatorFuncion = reinterpret_cast<LookupFuncEncDecObjCreator> (func);
338 CEncDecHack* pDecryptor = reinterpret_cast<CEncDecHack*>(objCreatorFuncion(aKey, EFalse));
339 pDecryptor->Transform(aInputBlock);
346 // -----------------------------------------------------------------------------
347 // function_name: Deallocate2DimensionalUchar
349 // To deallocate storage alloted for the two dimensional array
352 // -----------------------------------------------------------------------------
354 void Deallocate2DimensionalUchar(unsigned char **buffer, int row)
357 for(m=0 ; m<row ; ++m)
359 User::Free((TAny *)buffer[m]);
361 User::Free((TAny *)buffer);
364 // -----------------------------------------------------------------------------
365 // function_name: Deallocate2DimensionalUint
367 // To deallocate storage alloted for the two dimensional array
370 // -----------------------------------------------------------------------------
372 void Deallocate2DimensionalUint(__uint32_t **buffer, int row)
375 for(m=0 ; m<row ; ++m)
377 User::Free((TAny *)buffer[m]);
379 User::Free((TAny *)buffer);
382 // -----------------------------------------------------------------------------
383 // function_name: Allocate2DimensionalUchar
385 // Function to allocate storage for a two dimensional array from the heap.
386 // If heap exhaustion occurs during the course of allocating memory to the array,
387 // the previously allocated storage will be deleted prior to returning to the
390 // Returns: non-zero if allocation is successful, 0 if it fails
391 // -----------------------------------------------------------------------------
393 int Allocate2DimensionalUchar(unsigned char ***buffer, int row, int column)
395 *buffer = (unsigned char **)User::Alloc(row * sizeof(unsigned char *));
400 for(int m=0 ; m<row ; ++m)
402 (*buffer)[m] = (unsigned char *)User::Alloc(column * sizeof(unsigned char));
403 if(NULL == (*buffer)[m])
405 // Insufficient heap memory
408 // Deallocate the previously allocated storage
409 Deallocate2DimensionalUchar(*buffer, m);
418 // -----------------------------------------------------------------------------
419 // function_name: Allocate2DimensionalUint
421 // Function to allocate storage for a two dimensional array of type unsigned int
422 // from the heap. If heap exhaustion occurs while allocating memory to the array,
423 // the previously allocated storage will be deleted prior to returning to the
426 // Returns: non-zero if allocation is successful, 0 if it fails
427 // -----------------------------------------------------------------------------
429 int Allocate2DimensionalUint(__uint32_t ***buffer, int row, int column)
431 *buffer = (__uint32_t **)User::Alloc(row * sizeof(__uint32_t *));
436 for(int m=0 ; m<row ; ++m)
438 (*buffer)[m] = (__uint32_t *)User::Alloc(column * sizeof(__uint32_t));
439 if(NULL == (*buffer)[m])
441 // Insufficient heap memory
444 // Deallocate the previously allocated storage
445 Deallocate2DimensionalUint(*buffer, m);
454 } // <<end extern "C">>