Jaroslav Imrich

Results 63 comments of Jaroslav Imrich

Pkcs11Interop strictly follows vanilla PKCS#11 standard and proposed interfaces are BouncyCastle specific so I cannot say I like proposed approach very much. If it is **really needed** I would rather...

I'm also not aware of any alternatives to BouncyCastle.

@adcy this issue originally discussed signing with BouncyCasle with `ISigner`. Could you please share more details on what kind of cryptographic operation do you want to integrate with `ICryptoTransform`? Your...

I'm closing this PR as I'm no longer interested in working on this feature.

No, that is not a known issue. Please post the attributes you are using to create those objects.

`CKA_PRIVATE` attribute is set to `True` so this data object is visible only when user is logged in. Did you perform login before you searched for data objects?

Problem might be here: ```csharp List keyAttributes = new List() { new ObjectAttribute(CKA.CKA_CLASS, CKO.CKO_DATA), }; ``` Try changing it to: ```csharp List keyAttributes = new List() { session.Factories.ObjectAttributeFactory.Create(CKA.CKA_CLASS, CKO.CKO_DATA), };...

Nope. I am not currently working on anything maccatalyst related.

@angelru it's really hard for me to understand what your problem is and help you because you're describing it in a multiple comments in a quite chaotic way. Please be...

Information you provided: * the version of Pkcs11Interop you are using: 5.1.2 * the version of .NET you are using: .NET 7 * the description of the actual result (what...