Re: [opensc-devel] Git build status.

2011-06-09 Thread Martin Paljak
On Jun 8, 2011, at 21:12 , Alon Bar-Lev wrote: > On Wed, Jun 8, 2011 at 2:18 PM, Martin Paljak wrote: >>> Trac sends emails about new tickets, can you convert that into RSS? >> RSS has *always* been available from Trac timelines and other pages, most >> browsers these days display a RSS button

Re: [opensc-devel] Git build status.

2011-06-09 Thread Alon Bar-Lev
On Thu, Jun 9, 2011 at 10:33 AM, Martin Paljak wrote: > > On Jun 8, 2011, at 21:12 , Alon Bar-Lev wrote: > >> On Wed, Jun 8, 2011 at 2:18 PM, Martin Paljak >> wrote: Trac sends emails about new tickets, can you convert that into RSS? >>> RSS has *always* been available from Trac timelines a

[opensc-devel] OpenSC slides on EEMA eID conference about open source in (national) eID

2011-06-09 Thread Martin Paljak
Hello, The slides that I used for the talk about OpenSC on the EEMA conference are available online [1]. Comments, questions and general bashing welcome. I hope the talk made more sense than the accompanying slides I put together last night. Douglas, special thanks for work on PIV were sent to

Re: [opensc-devel] Pinpad, TCOS 2, GemPC, SPR532

2011-06-09 Thread Johannes Becker
Hello, Am Mittwoch 08 Juni 2011 schrieb Martin Paljak: > > Using the GemPlus Pinpad reader, Firefox shows quickly serveral times > > the window telling you to enter the PIN on the Pinpad, but the connection > > to the web servers fails before you have a chance to to anything. ... > How does this

[opensc-devel] Code flow for Git branches / code review

2011-06-09 Thread Martin Paljak
Hello, One of the often mentioned benefits of open source software is "many eyes see the code, thus it is more secure/neat/better than closed source". Well, I'm personally not sure this is generally the case. At least in OpenSC, the approach has been a "kitchen sink" style for as long as I remem

Re: [opensc-devel] Code flow for Git branches / code review

2011-06-09 Thread Andreas Jellinghaus
some small questions: what about code review tools/sites like gerrit? Are those usefull for open source projects? maybe those are also easier to use for both submitting patches and merging those than posting patches to mailing lists or attaching them to tickets? also I'd think that anyone doing

Re: [opensc-devel] Changeset 5558 in opensc

2011-06-09 Thread Andre Zepezauer
On Wed, 2011-06-08 at 16:35 +0200, Jean-Pierre Szikora wrote: > On 06/08/2011 03:50 PM, Andre Zepezauer wrote: > > On Wed, 2011-06-08 at 11:50 +0200, Jean-Pierre Szikora wrote: > >> On 06/07/2011 03:17 PM, Andre Zepezauer wrote: > >>> Hello Jean-Pierre, > >>> > >>> SC_PKCS15_PIN_FLAG_VERIFY_RC_COUN

Re: [opensc-devel] Static link for opensc-pkcs11.dll

2011-06-09 Thread Viktor Tarasov
Le 08/06/2011 14:31, Martin Paljak a écrit : > On Jun 7, 2011, at 19:15 , Viktor Tarasov wrote: >> What's happened with the Spanish card? > It went something like this: > - Some company/organization in Spain takes OpenSC, hack their driver, > publish the result (no source) > - Juan Antonio not

Re: [opensc-devel] Code flow for Git branches / code review

2011-06-09 Thread Martin Paljak
Hello, On Jun 9, 2011, at 16:37 , Andreas Jellinghaus wrote: > some small questions: > what about code review tools/sites like gerrit? Are those usefull for open > source projects? > > maybe those are also easier to use for both submitting patches and merging > those than posting patches to mail

[opensc-devel] Do smart card drivers generally support more than one PKCS#11 session?

2011-06-09 Thread Stef Walter
I'm working on integrating smart card support via PKCS#11 into glib and gcr (part of gnome-keyring). We're integrating with GnuTLS for TLS support. I'd like to be able to do a C_Login in my code, and then pass off the URL to Gnutls. GnuTLS would then open another session, recognize that we're a

Re: [opensc-devel] Do smart card drivers generally support more than one PKCS#11 session?

2011-06-09 Thread Alon Bar-Lev
Yes. Most [usable] providers support this. Although there are different issues to solve in your case, such as calling twice to C_Initialize, not calling C_Finalize if C_Initialize returned with already initialized. Also, some implementations will treat authentication state same for all sessions,

Re: [opensc-devel] Do smart card drivers generally support more than one PKCS#11 session?

2011-06-09 Thread Stef Walter
On 06/09/2011 10:11 PM, Alon Bar-Lev wrote: > Yes. > Most [usable] providers support this. Good to hear. > Although there are different issues to solve in your case, such as > calling twice to C_Initialize, not calling C_Finalize if C_Initialize > returned with already initialized. This is what