Giter VIP home page Giter VIP logo

Comments (2)

jariq avatar jariq commented on June 1, 2024

I downloaded Pkcs11Interop V2.0.1 the other day along with the Pkcs7SignatureGenerator.

It is quite an old code which needs to be updated to use at least Pkcs11Interop 3.1.0.

I was hoping to use the KeyContainerName to get the private key ID via the Pkcs11Explorer.

I am not quite sure why would you want to do that but it should be fairly easy to map X509Certificate2 class instance to Certificate class instance by comparing X509Certificate2.RawData with Certificate.Data.

Corresponding PrivateKey class instance then can be found by comparing PrivateKey.Id with Certificate.Id and PrivateKey.Label with Certificate.Label. However please note that this may not always work because such association is not required by PKCS#11 specification. To be 100% sure you will need to compare also PrivateKey.PublicKey with Certificate.PublicKey.

It seems odd that accessing the HSM via the certificate's private key causes the Pkcs11Interop to return an empty slot list. It's as if accessing the private key like this opens a session which isn't closed properly.

It is rather unusual to use both CSP and PKCS#11 providers in single application because often they share the same underlying code and may be interfering. Such problems are not easy to troubleshoot without the assistance of device vendor.

from pkcs11interop.

prarnok avatar prarnok commented on June 1, 2024

Thanks for the heads up regarding v3 of pkcs11interop.dll. I just got v2 via a link on stackoverflow.

Your suggestion about converting the X509Certificate2 into a Certificate appears to have done the trick!

    private PrivateKey GetCertPrivateKey()
    {
        PrivateKey certificatePrivateKey = null;

        Certificate tmpCert = new Certificate("Foo", "Bar", this.signingCertificate.RawData);

        foreach (PrivateKey pk in this.privateKeys)
        {
            if (tmpCert.PublicKey.Equals(pk.PublicKey))
            {
                certificatePrivateKey = pk;
                break;
            }
        }

        return certificatePrivateKey;
    }

Thanks for your help,
Mark

from pkcs11interop.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.