Commit 7a1f92fd authored by Richard Levitte's avatar Richard Levitte
Browse files

Windows CE updates, contributed by Steven Reddie <smr@essemer.com.au>

parent e7a28569
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -11,6 +11,9 @@
 You also need Perl for Win32.  You will need ActiveState Perl, available
 You also need Perl for Win32.  You will need ActiveState Perl, available
 from http://www.activestate.com/ActivePerl.
 from http://www.activestate.com/ActivePerl.


 Windows CE support in OpenSSL relies on wcecompat.  All Windows CE specific
 issues should be directed to www.essemer.com.au.

 The C Runtime Library implementation for Windows CE that is included with
 The C Runtime Library implementation for Windows CE that is included with
 Microsoft eMbedded Visual C++ 3.0 is incomplete and in some places
 Microsoft eMbedded Visual C++ 3.0 is incomplete and in some places
 incorrect.  wcecompat plugs the holes and tries to bring the Windows CE
 incorrect.  wcecompat plugs the holes and tries to bring the Windows CE
+0 −3
Original line number Original line Diff line number Diff line
@@ -121,9 +121,6 @@


#ifndef OPENSSL_NO_FP_API
#ifndef OPENSSL_NO_FP_API
#include <stdio.h>
#include <stdio.h>
#ifdef OPENSSL_SYS_WINCE
#include <stdio_extras.h>
#endif
#endif
#endif


#include <openssl/stack.h>
#include <openssl/stack.h>
+0 −3
Original line number Original line Diff line number Diff line
@@ -112,9 +112,6 @@
#include <string.h>
#include <string.h>
#include <openssl/des.h>
#include <openssl/des.h>
#include <openssl/ui.h>
#include <openssl/ui.h>
#ifdef OPENSSL_SYS_WINCE
#include <stdio_extras.h>	/* BUFSIZ */
#endif


int DES_read_password(DES_cblock *key, const char *prompt, int verify)
int DES_read_password(DES_cblock *key, const char *prompt, int verify)
	{
	{
+0 −3
Original line number Original line Diff line number Diff line
@@ -58,9 +58,6 @@


#include <openssl/e_os2.h>
#include <openssl/e_os2.h>
#include <stdio.h>
#include <stdio.h>
#ifdef OPENSSL_SYS_WINCE
#include <stdlib_extras.h>
#endif
#include <string.h>
#include <string.h>
#include <openssl/buffer.h>
#include <openssl/buffer.h>
#include <openssl/crypto.h>
#include <openssl/crypto.h>
+1 −0
Original line number Original line Diff line number Diff line
@@ -61,6 +61,7 @@
#include <string.h>
#include <string.h>
#include <openssl/md2.h>
#include <openssl/md2.h>
#include <openssl/opensslv.h>
#include <openssl/opensslv.h>
#include <openssl/crypto.h>


const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT;
const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT;


Loading