Re: [openssl-dev] [openssl.org #2911] enhancement request: Windows RT support

2016-06-25 Thread Francis Dupont via RT
 In your previous mail you wrote:

>  Nobody got around to looking at this, sorry. I could not decode the patch
>  although 103K is big. Windows RT is no longer supported. Closing ticket.

=> no problem...

Thanks

francis.dup...@fdupont.fr


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=2911
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl.org #2911] Windows Store app in the pipe

2013-02-17 Thread Francis Dupont via RT
I submitted an OpenSSL for WinRT (demo) application for the Windows
Store. In order to avoid crypto export problems, I stripped all the
real crypto and kept only SHA-1 with its tests...
If the RT is configured as usual, a big file will be automagically
considered as an attachment so I am posting the patch file
(it is in the application too but I have no control on Microsoft
delays...).

Regards

francis.dup...@fdupont.fr


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #2911] shall publish current state

2013-02-13 Thread Francis Dupont via RT
I'll publish the whole stuff (patch to the last OpenSSL distrib,
docs and the test suite as the application) into the Windows Store
in a few days (I expect this weekend).

francis.dup...@fdupont.fr

PS: only the crypto stuff works: the file and network I/O part of
the WIN32 API is not available in WinRT.
PPS: if someone can provide some graphic inputs for splash screen
and co...


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #2911] did some progress

2012-11-27 Thread Francis Dupont via RT
I got the libraries compiled and a test application (in fact something
calling all the crypto (vs ssl) C tests and displaying results) which
passed the Windows Store apps checks.
Now, how to proceed further?

Thanks

francis.dup...@fdupont.fr


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #2911] enhancement request: Windows RT support

2012-11-10 Thread Francis Dupont via RT
type of request: enhancement
object: support of Windows RT
comment:
Windows RT is the new Microsoft Windows 8 for ARM tablets such
the Microsoft Surface. Applications (so OpenSSL) can be cross
built using a Visual Studio C++ 2012 on a x86 platform running
a not too old version of Windows.

I suggest to create and fill a README.WRT file at the top
directory explaining how to build OpenSSL for Windows RT
(similar to already provided README.W32, README.W64 and
README.WCE).

I have access to a suitable build platform and a Windows RT
device so I can help both giving some inputs and testing
results. Just send a message to my personal E-mail
francis.dup...@fdupont.fr or professional E-mail
fdup...@isc.org

Regards

PS: perhaps  you can do a similar thing for Windows 8 Phone?

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #1177] trivial bug in crypto/store/str_lib.c

2005-07-28 Thread Francis Dupont via RT

Even if the STORE stuff is highly experimental I'd like to use it one
day... BTW I hacked a 0.9.7 to add LDAP retrieval of certs and CRLs so
as soon as STORE_Directory()/STORE_File() are ready I'll be glad to
give a STORE_Ldap()...
To come to the bug:

#define check_store(s,fncode,fnname,fnerrcode) \
do \
{ \
if ((s) == NULL || (s)-meth) \
{ \
STOREerr((fncode), ERR_R_PASSED_NULL_PARAMETER); \
return 0; \
} \
if ((s)-meth-fnname == NULL) \
{ \
STOREerr((fncode), (fnerrcode)); \
return 0; \
} \
} \
while(0)

the second test on (s)-meth should be == NULL.

Regards

[EMAIL PROTECTED]

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]