aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--g10/ChangeLog9
-rw-r--r--g10/card-util.c1
-rw-r--r--g10/cardglue.c4
3 files changed, 13 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 27a7c04ef..c2216951b 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-21 Werner Koch <[email protected]>
+
+ * cardglue.c (agent_scd_pksign): Allow the use of ripemd-160 along
+ with scdaemon.
+
2006-03-16 David Shaw <[email protected]>
* keyserver.c (keyserver_import_cert): Handle the IPGP CERT type
@@ -36,6 +41,10 @@
keys originally generated with older GnuPGs that included comments
in the secret keys.
+2006-03-10 Werner Koch <[email protected]>
+
+ * card-util.c (get_manufacturer): Added Vendor 3
+
2006-03-09 David Shaw <[email protected]>
* build-packet.c (string_to_notation): Add ability to indicate a
diff --git a/g10/card-util.c b/g10/card-util.c
index cace1962d..0c8365405 100644
--- a/g10/card-util.c
+++ b/g10/card-util.c
@@ -158,6 +158,7 @@ get_manufacturer (unsigned int no)
case 0xffff: return "test card";
case 0x0001: return "PPC Card Systems";
case 0x0002: return "Prism";
+ case 0x0003: return "OpenFortress";
default: return "unknown";
}
}
diff --git a/g10/cardglue.c b/g10/cardglue.c
index d850b561b..101b833c1 100644
--- a/g10/cardglue.c
+++ b/g10/cardglue.c
@@ -1225,7 +1225,9 @@ agent_scd_pksign (const char *serialno, int hashalgo,
if (!rc)
{
init_membuf (&data, 1024);
- snprintf (line, DIM(line)-1, "SCD PKSIGN %s", serialno);
+ snprintf (line, DIM(line)-1, "SCD PKSIGN %s%s",
+ hashalgo == GCRY_MD_RMD160? "--hash=rmd160 ": "",
+ serialno);
line[DIM(line)-1] = 0;
rc = test_transact (assuan_transact (app->assuan_ctx, line,
membuf_data_cb, &data,