sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef EMULATOR sl@0: #define EMULATOR ((defined(__WINS__) || defined(__WINSCW__))) sl@0: #endif sl@0: sl@0: #if EMULATOR sl@0: #include sl@0: sl@0: typedef struct TLibcryptWsd sl@0: { sl@0: /* encrypt.cpp desKey */ sl@0: unsigned char desKey[64]; // For persistence between calls sl@0: // to setkey() and encrypt() sl@0: int bSetkeyInvoked; sl@0: /* encrypt.cpp desKey */ sl@0: sl@0: /* crypt_md5() crypt-md5.c */ sl@0: const char *sp, *ep; sl@0: char passwd[120], *p; sl@0: /* crypt_md5() crypt-md5.c */ sl@0: sl@0: /* crypt-des.c */ sl@0: u_int32_t bits32[32]; /* Initialialize this array */ sl@0: sl@0: u_char inv_key_perm[64]; /* No specific initial values. However, initialize sl@0: * the array to zero. sl@0: */ sl@0: sl@0: u_char inv_comp_perm[56]; /* No specific initial values. However, initialize sl@0: * the array to zero. sl@0: */ sl@0: u_char u_sbox[8][64]; sl@0: sl@0: u_char un_pbox[32]; sl@0: sl@0: u_int32_t saltbits; sl@0: u_int32_t old_salt; sl@0: u_int32_t *bits28, *bits24; sl@0: u_char init_perm[64], final_perm[64]; sl@0: u_int32_t en_keysl[16], en_keysr[16]; sl@0: u_int32_t de_keysl[16], de_keysr[16]; sl@0: int des_initialised; /* = 0 ... inportant */ sl@0: sl@0: u_char **m_sbox; // [4][4096] bytes of dynamic storage sl@0: __uint32_t **psbox; // ([4][256] * 4) bytes of dynamic storage sl@0: sl@0: __uint32_t **ip_maskl, // ([8][256] * 4) bytes of dynamic storage sl@0: **ip_maskr; // ([8][256] * 4) bytes of dynamic storage sl@0: sl@0: __uint32_t **fp_maskl, // ([8][256] * 4) bytes of dynamic storage sl@0: **fp_maskr; // ([8][256] * 4) bytes of dynamic storage sl@0: sl@0: __uint32_t **key_perm_maskl, // ([8][128] * 4) bytes of dynamic storage sl@0: **key_perm_maskr; // ([8][128] * 4) bytes of dynamic storage sl@0: sl@0: __uint32_t **comp_maskl, // ([8][128] * 4) bytes of dynamic storage sl@0: **comp_maskr; // ([8][128] * 4) bytes of dynamic storage sl@0: sl@0: u_int32_t old_rawkey0, old_rawkey1; /* initialize this to zero */ sl@0: sl@0: char output[21]; sl@0: /* crypt-des.c */ sl@0: sl@0: }TLibcryptWsd; sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" TLibcryptWsd *GetGlobals(); sl@0: #else sl@0: TLibcryptWsd *GetGlobals(); sl@0: #endif /* End __cplusplus */ sl@0: sl@0: #endif