aboutsummaryrefslogtreecommitdiffstats
path: root/scd/app-p15.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Change all quotes in strings and comments to the new GNU standard.Werner Koch2012-06-051-1/+1
| | | | | | | | | | | | | | | | | | | The asymmetric quotes used by GNU in the past (`...') don't render nicely on modern systems. We now use two \x27 characters ('...'). The proper solution would be to use the correct Unicode symmetric quotes here. However this has the disadvantage that the system requires Unicode support. We don't want that today. If Unicode is available a generated po file can be used to output proper quotes. A simple sed script like the one used for en@quote is sufficient to change them. The changes have been done by applying sed -i "s/\`\([^'\`]*\)'/'\1'/g" to most files and fixing obvious problems by hand. The msgid strings in the po files were fixed with a similar command.
* Nuked almost all trailing white space.post-nuke-of-trailing-wsWerner Koch2011-02-041-138/+138
| | | | | | | | We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again.
* Add dummu option --passwd for gpg.Werner Koch2010-01-081-1/+1
| | | | | Collected changes.
* Do not use the VMC C reserved word readonly.Werner Koch2009-12-151-1/+1
|
* Fix for card keys > 2048 bit.Werner Koch2009-07-101-3/+3
|
* Add server option with-ephemeral-keys.Werner Koch2009-03-181-8/+14
| | | | | Extend SCD LEARN command.
* Use bin2hex if possible.Werner Koch2008-11-031-18/+4
|
* Remove hacks which are not anymore needed since we now require Libgcrypt 1.4Werner Koch2008-09-291-4/+4
|
* Changed to GPLv3.Werner Koch2007-07-041-4/+2
| | | | | Removed intl/.
* Made some PIN pads work.Werner Koch2006-11-201-1/+2
| | | | | Some cleanups for 64 bit CPUs.
* Preparing another releasegnupg-1.9.94Werner Koch2006-10-241-7/+23
|
* .Werner Koch2006-10-231-2/+2
|
* Various changesWerner Koch2006-10-101-1/+1
|
* Take advantage of newer gpg-error features.Werner Koch2006-09-141-15/+15
|
* Updated FSF's address.Werner Koch2006-06-201-1/+2
|
* g10/ does build again.Werner Koch2006-05-231-0/+10
|
* Preparing an interim releaseWerner Koch2005-11-281-8/+5
|
* Bug fixes and ssh support for the BELPIC.Werner Koch2005-09-091-5/+123
|
* The BELPIC card does now work.Werner Koch2005-09-061-35/+123
|
* Basically made Belgian EID cards work.Werner Koch2005-09-051-31/+218
| | | | | | Signature creation has not yet been tested. Also other changes to better cope with T=0 cards.
* gcc-4 defaults forced me to edit many many files to get rid of theWerner Koch2005-06-161-13/+15
| | | | | | | char * vs. unsigned char * warnings. The GNU coding standards used to say that these mismatches are okay and better than a bunch of casts. Obviously this has changed now.
* Changed the scdaemon to handle concurrent sessions. AdjustedWerner Koch2005-05-181-4/+4
| | | | | gpg-agent accordingly. Code cleanups.
* * app-p15.c (micardo_mse): New.Werner Koch2005-04-271-16/+126
| | | | | | | | | | | | | | (do_sign): Call it. * iso7816.c (iso7816_manage_security_env): Allow passing DATA as NULL to indicate an empty Lc. * tlv.c (find_tlv): Check that a found object fits into the buffer. (find_tlv_unchecked): New as replacement for the old non-checking variant. * app.c (select_application): Keep on using the non-checking variant. * app-openpgp.c (get_one_do, dump_all_do): Ditto.
* * configure.ac: Removed OpenSC detection and options.Werner Koch2005-04-271-277/+2489
| | | | | | | | | | | | | | | | | | | * acinclude.m4: Ditto. * scdaemon.texi: Removed OpenSC specific options. * app-p15.c: New. Basic support for pkcs15 cards without OpenSC. There are quite a couple of things missing but at least I can use my old TCOS cards from the Aegypten-1 development for signing. * app.c (select_application): Detect pkcs15 applications. * Makefile.am (scdaemon_SOURCES): Removed card.c, card-common.h and card-p15.c because they are now obsolete. Added app-p15.c. Removed all OpenSC stuff. * command.c (do_reset, open_card, cmd_serialno, cmd_learn) (cmd_readcert, cmd_readkey, cmd_pksign, cmd_pkdecrypt): Removed all special cases for the old card.c based mechanisms. * scdaemon.c, apdu.c: Removed all special cases for OpenSC.
* First take on a W32 portWerner Koch2004-12-021-0/+691