Re: [PHP-DEV] In memory support for openssl_pkcs7_*

2010-07-16 Thread Paul van Brouwershaven
Op 16-7-2010 9:54, Pierre Joye schreef: > Can you open a feature request for these changes/features please? So I > won't lost track of them. http://bugs.php.net/bug.php?id=52356 -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] In memory support for openssl_pkcs7_*

2010-07-16 Thread Pierre Joye
hi, On Fri, Jul 16, 2010 at 9:45 AM, Jille Timmermans wrote: > For the record: I created a proof-of-concept patch which changes > openssl_pkcs7_sign() to use the input filename as a string instead as a > filename. Paul has tested this and it seems to work. > > I don't know what the best way is to

Re: [PHP-DEV] In memory support for openssl_pkcs7_*

2010-07-16 Thread Jille Timmermans
For the record: I created a proof-of-concept patch which changes openssl_pkcs7_sign() to use the input filename as a string instead as a filename. Paul has tested this and it seems to work. I don't know what the best way is to go from here. We could add an extra argument to all those functions

[PHP-DEV] In memory support for openssl_pkcs7_*

2010-07-15 Thread Paul van Brouwershaven
Hi, The PHP functions openssl_pkcs7_(sign|encrypt|decrypt|verify) do require files to be executed. In many cases this will create the unintended requirement of temporary files. In compare with openssl_(sign|encrypt|decrypt|verify|...) which are doing almost the same thing this is a strange beha