Geoffrey Elgey wrote:
G'day,

How do I check out libmusclecard from CVS (or even browse CVS online)?

When I go to [1] (accessed from the CVS link of [2]) and use libmusclecard as the module name, I get a limited set of files, which I assume was part of the old pcsclite library. Source files such as p11_object.c, for example, are not present.

PKCS#11 is something different than MuscleCard. It is only an implementation of PKCS#11 with MuscleCard. It will never be contained in libmusclecard.

Look in the list and check out the right (modulename is the modulename):

cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/muscleplugins login
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/muscleplugins co modulename

MCardPlugin
MCardPluginDDK
MCardApplet

- - - - -

cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/muscleapps login
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/muscleapps co modulename

PKCS#11
muscleTool
XCardII
MusclePAM

- - - - -

cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/pcsclite login
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/pcsclite co modulename

libmusclecard
PCSC

Karsten


In any case, I'd like to have the following lines added to the object_LogAttribute function of src/p11x_object.c, if they are not there already:

@@ -1011,6 +1011,10 @@
             log_Log(LOG_LOW, "CKA_LABEL:%s", buf);
log_Log(LOG_LOW, "CKA_LABEL (string): %.*s", attrib->ulValueLen, attrib->pValue);
             break;
+        case CKA_APPLICATION:
+            log_Log(LOG_LOW, "CKA_APPLICATION:%s", buf);
+ log_Log(LOG_LOW, "CKA_APPLICATION (string): %.*s", attrib->ulValueLen, attrib->pValue);
+            break;
         case CKA_VALUE:
             log_Log(LOG_LOW, "CKA_VALUE:%s", buf);
             break;

-- Geoff

[1] https://alioth.debian.org/scm/?group_id=30105
[2] https://alioth.debian.org/project/shownotes.php?release_id=468
_______________________________________________
Muscle mailing list
[email protected]
http://lists.drizzle.com/mailman/listinfo/muscle

_______________________________________________
Muscle mailing list
[email protected]
http://lists.drizzle.com/mailman/listinfo/muscle

Reply via email to