Giter VIP home page Giter VIP logo

Comments (2)

Thordax avatar Thordax commented on June 15, 2024

Addendum : I followed your sample code here : https://github.com/jariq/Pkcs11Interop.PDF/blob/8f7015ed4231344c02706fc1161f217fce961264/src/Pkcs11Interop.PDF/Pkcs11RsaSignature.cs

And I added this before signing :

byte[] digestInfo = null;
byte[] digest = null;
digest = ComputeDigest(new Sha256Digest(), btToSign);
digestInfo = CreateDigestInfo(digest, "2.16.840.1.101.3.4.2.1");
btResult = session.Sign(new Mechanism(CKM.CKM_RSA_PKCS), handlePrivateKey, digestInfo);

But this operation returns the following error CKR_FUNCTION_FAILED. Maybe the length of the digestInfo byte array (49 bytes) is not good for signing like this ?

from pkcs11interop.

Thordax avatar Thordax commented on June 15, 2024

I understand what happened. Regarding this thread :

http://stackoverflow.com/questions/33305800/difference-between-sha256withrsa-and-sha256-then-rsa?noredirect=1&lq=1

The method "CreateDigestInfo" should have a line containing the parameter DerNull.Instance instead of null, like this :

AlgorithmIdentifier algorithmIdentifier = new AlgorithmIdentifier(derObjectIdentifier, DerNull.Instance);

instead of this :

AlgorithmIdentifier algorithmIdentifier = new AlgorithmIdentifier(derObjectIdentifier, null);

This issue can be closed (maybe it will be useful for someone else).

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.