aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/eap_sim_pcsc
Commit message (Collapse)AuthorAgeFilesLines
* Don't cast second argument of mem_printf_hook (%b) to size_t.Tobias Brunner2012-03-271-8/+13
| | | | | | | | | | | | | Also treat the given number as unsigned int. Due to the printf hook registration the second argument of mem_printf_hook (if called via printf etc.) is always of type int*. Casting this to a size_t pointer and then dereferencing that as int does not work on big endian machines if int is smaller than size_t (e.g. on ppc64). In order to make this change work if the argument is of a type larger than int, size_t for instance, the second argument for %b has to be casted to (u_)int.
* Revert "fixed integrity tests of plugins using libsimaka"Tobias Brunner2011-11-081-0/+1
| | | | | | | | This reverts commit 8c42f16deeeffa1ae305b18306b0796f49c9922c. Conflicts: src/charon/Makefile.am
* fixed integrity tests of plugins using libsimakaAndreas Steffen2011-11-041-1/+0
|
* Add features support to eap-sim-pcsc pluginMartin Willi2011-10-142-17/+25
|
* Migrated all SIM/AKA code to libsimaka, use SIM and AKA backend managers ↵Martin Willi2011-08-084-8/+19
| | | | registered by name
* Protect the communication with the SIM card during a transaction from access ↵Duncan Salerno2011-05-121-12/+46
| | | | by a second application
* Added a (not yet implemented) plugin_t method to reload plugin configurationMartin Willi2011-04-151-0/+1
|
* Added a get_name() function to plugin_t, create_plugin_enumerator enumerates ↵Martin Willi2011-04-151-0/+7
| | | | over plugin_t
* fixed bit maskDuncan Salerno2011-04-071-2/+2
|
* Migrated eap_sim_pcsc plugin to INIT/METHOD macrosMartin Willi2011-04-042-32/+38
|
* Slightly reformatted SIM pcsc codeMartin Willi2011-04-042-30/+44
|
* Added SIM card backend based on pcsc-liteDuncan Salerno2011-04-045-0/+510