1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdlibs/libcrypt/inc/wsd_solution.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,90 @@
1.4 +/*
1.5 +* Copyright (c) 2009 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:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#ifndef EMULATOR
1.24 +#define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
1.25 +#endif
1.26 +
1.27 +#if EMULATOR
1.28 +#include <sys/types.h>
1.29 +
1.30 +typedef struct TLibcryptWsd
1.31 +{
1.32 + /* encrypt.cpp desKey */
1.33 + unsigned char desKey[64]; // For persistence between calls
1.34 + // to setkey() and encrypt()
1.35 + int bSetkeyInvoked;
1.36 + /* encrypt.cpp desKey */
1.37 +
1.38 + /* crypt_md5() crypt-md5.c */
1.39 + const char *sp, *ep;
1.40 + char passwd[120], *p;
1.41 + /* crypt_md5() crypt-md5.c */
1.42 +
1.43 + /* crypt-des.c */
1.44 + u_int32_t bits32[32]; /* Initialialize this array */
1.45 +
1.46 + u_char inv_key_perm[64]; /* No specific initial values. However, initialize
1.47 + * the array to zero.
1.48 + */
1.49 +
1.50 + u_char inv_comp_perm[56]; /* No specific initial values. However, initialize
1.51 + * the array to zero.
1.52 + */
1.53 + u_char u_sbox[8][64];
1.54 +
1.55 + u_char un_pbox[32];
1.56 +
1.57 + u_int32_t saltbits;
1.58 + u_int32_t old_salt;
1.59 + u_int32_t *bits28, *bits24;
1.60 + u_char init_perm[64], final_perm[64];
1.61 + u_int32_t en_keysl[16], en_keysr[16];
1.62 + u_int32_t de_keysl[16], de_keysr[16];
1.63 + int des_initialised; /* = 0 ... inportant */
1.64 +
1.65 + u_char **m_sbox; // [4][4096] bytes of dynamic storage
1.66 + __uint32_t **psbox; // ([4][256] * 4) bytes of dynamic storage
1.67 +
1.68 + __uint32_t **ip_maskl, // ([8][256] * 4) bytes of dynamic storage
1.69 + **ip_maskr; // ([8][256] * 4) bytes of dynamic storage
1.70 +
1.71 + __uint32_t **fp_maskl, // ([8][256] * 4) bytes of dynamic storage
1.72 + **fp_maskr; // ([8][256] * 4) bytes of dynamic storage
1.73 +
1.74 + __uint32_t **key_perm_maskl, // ([8][128] * 4) bytes of dynamic storage
1.75 + **key_perm_maskr; // ([8][128] * 4) bytes of dynamic storage
1.76 +
1.77 + __uint32_t **comp_maskl, // ([8][128] * 4) bytes of dynamic storage
1.78 + **comp_maskr; // ([8][128] * 4) bytes of dynamic storage
1.79 +
1.80 + u_int32_t old_rawkey0, old_rawkey1; /* initialize this to zero */
1.81 +
1.82 + char output[21];
1.83 + /* crypt-des.c */
1.84 +
1.85 +}TLibcryptWsd;
1.86 +
1.87 +#ifdef __cplusplus
1.88 +extern "C" TLibcryptWsd *GetGlobals();
1.89 +#else
1.90 +TLibcryptWsd *GetGlobals();
1.91 +#endif /* End __cplusplus */
1.92 +
1.93 +#endif