Ugo Chirico wrote:
Hi all,

I'm developing a PKCS#11 for a USIM.
Testing my PKCS#11 with Mozilla 1.6 I found that often it calls C_FindObject passing a template with CKA_CLASS = 0xCE534353
(that is a template like this: {CKA_CLASS, 0xCE534353, 4}).
The class 0xCE534353 is not defined in PKCS#11 specification.
What does that class means?
What mozilla is looking for?
How should I manage that class?

Those are vendor-defined object or attribute types. PKCS#11 defines how a PKCS11 module should handle types it doesn't recognize. Your module should follow the standard, unless you want to support NSS's vendor-defined objects/attributes.

Since your module has no objects of that type, perhaps the simplest
thing to do is to answer the request exactly as if you have no objects
of the requested type.

--
Nelson B
_______________________________________________
mozilla-crypto mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-crypto

Reply via email to