Jump to content

Recommended Posts

Posted

Thanks for sharing.
Is this possible to use CNG feature to use Qualified Certificate store on CryptoCard ?
For example sign PDF with PADES ?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

For example function: 

eunmerate_registered_providers_example()

Gives me this result:
image.png.662c9bcbe0676498f7b9134fa54b834b.png

 

And I want to use "SimplySign KSP" to use my CryptoCard by using PIN to my certificate.

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Could you also be so nice and add this two following lines of code:

#AutoIt3Wrapper_Run_AU3Check=Y
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7

to the top of your UDF ?

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 12/2/2019 at 2:49 PM, mLipok said:

Thanks for sharing.
Is this possible to use CNG feature to use Qualified Certificate store on CryptoCard ?
For example sign PDF with PADES ? 

Expand  

You're quite welcome!  I hope you and others find it useful.

I wasn't familiar with PAdES so I was researching it a bit before trying to reply.  It appears that it is a set of restrictions and extensions related to signing a PDF.  After doing some quick Googling, it appears that it may be possible.  CNG does have APIs to create signatures.  Unfortunately, those API were not in my initial release of the CryptoNG UDF.  I do plan to extend the UDF's functionality.  So maybe signature creation will be on the short list.  :)

https://www.codeproject.com/Articles/1256991/The-AdES-Collection-CAdES-XAdES-PAdES-and-ASiC

 

 

Posted (edited)
  On 12/2/2019 at 2:56 PM, mLipok said:

And I want to use "SimplySign KSP" to use my CryptoCard by using PIN to my certificate.

Expand  

One of the nice things about CNG is that you can use any registered provider that is installed on the computer.  I didn't include the ability to manually select a provider in the initial version.  Currently, I let the API choose the preferred provider.  That is one of the feature of the Microsoft API.  However, allowing one to choose their provider manually doesn't appear to be too difficult.  I can look into adding that functionality also.

I would just need to modify the OpenAlgorithm API in my UDF to allow the specification of the Provider (pszImplementation).  Currently, I leave it Null.

https://docs.microsoft.com/en-us/windows/win32/api/bcrypt/nf-bcrypt-bcryptopenalgorithmprovider

 

Edited by TheXman
Posted
  On 12/2/2019 at 2:58 PM, mLipok said:

Could you also be so nice and add this two following lines of code:

#AutoIt3Wrapper_Run_AU3Check=Y
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7

to the top of your UDF ?

Expand  

I'm not sure this is a good idea as it forces the user to code his script so it passes this checks as well.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted
  On 12/2/2019 at 2:58 PM, mLipok said:

Could you also be so nice and add this two following lines of code:

#AutoIt3Wrapper_Run_AU3Check=Y
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7

to the top of your UDF ?

 

Expand  

I usually put those directives in the script that includes the UDF.  By putting them in the UDF itself, it may override directives used by the user. which I'm not sure would be an appropriate thing to do.

Posted (edited)
  On 12/2/2019 at 2:56 PM, mLipok said:

And I want to use "SimplySign KSP" to use my CryptoCard by using PIN to my certificate.

Expand  

I will add the ability to specify a Crypto Provider to the __CryptoNG_BCryptOpenAlgorithmProvider() function today.  I will publish the updated UDF as soon as I have implemented and tested it.  Unfortunately, that will not help in creating signatures because I haven't added those APIs to the UDF yet.  That will take a little longer to implement and test. :)  But at least that functionality to choose a Provider, which would be required, will already be there.

Edited by TheXman
Posted

Added your UDF to the wiki :)

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted
  On 12/2/2019 at 3:46 PM, water said:

Added your UDF to the wiki :)

Expand  

@water

The link below from the Encryption section of the Wiki does not appear to link to my UDF.

Cryptography API: Next Gen (by TheXman) - Microsoft's long-term replacement for their CryptoAPI.

Posted

Fixed :)

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

browsing the UDF I believe this sould be added/mod.

Func __CryptoNG_Shutdown()

    _DebugOut(@CRLF & "Function: __CryptoNG_Shutdown()")

    ;If dll file is open, then close it
    If $__gbDllOpened Then
        DllClose($__ghBcryptDll)
        $__ghBcryptDll = -1 ; <=======
        $__gbDllOpened = False
    EndIf

EndFunc

Love it !, thanks for sharing.

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted (edited)
  On 12/2/2019 at 4:28 PM, argumentum said:

browsing the UDF I believe this sould be added/mod.

Expand  

Thanks!  :)  

Just so that I understand your suggestion, are you suggesting that I add that line in order to release any resources related to the handle?  If so, having closed the handle, wouldn't those resources be released when the variable goes out of scope - in this case, when the script exits?  __CryptoNG_Shutdown() is an internal function that only gets executed upon exiting the script.  The startup function, which is also an internal function, registered the shutdown function to execute on exit.  I'm not trying to be difficult, I'm truly trying to understand the need to add that line.

Edited by TheXman
Posted (edited)
  On 12/2/2019 at 4:49 PM, argumentum said:

Also the only flag you use is "$__ghBcryptDll = -1", so is needed.
By doing so, the "$__gbDllOpened = False" flag is unneeded, given that "$__ghBcryptDll = -1" determines if is loaded or not. 

Expand  

Yes, you are correct.  The $__gbDllOpened flag is a holdover from some original logic that I removed.  It really isn't necessary because I can just check whether the handle = -1 (as you have pointed out).  Thanks, I will definitely clean that up. :)

  On 12/2/2019 at 4:49 PM, argumentum said:

The way I see it, one can run the Func at will,  ...and wait for it ..., some one will :) 

Expand  

Yes, one could execute internal/helper functions if they choose to.  But if they do so, hopefully they understand what they are doing.  To me, although they are visible, I look at internal functions as I would functions that are private in scope in an OOP environment.  They should not be executed out of context or really at all.  But you are right, people will do it. :doh::)

Edited by TheXman
Posted
 
 
 
 
  On 12/2/2019 at 3:03 PM, TheXman said:

You're quite welcome!  I hope you and others find it useful.

I wasn't familiar with PAdES so I was researching it a bit before trying to reply.  It appears that it is a set of restrictions and extensions related to signing a PDF.  After doing some quick Googling, it appears that it may be possible. 

Expand  

It would be nice even if this UDF gives you a possibility to Sign XML or PDF , as XADES or verify the signed file.

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

@mLipok

CNG does have some signature-related APIs as it relates to generating signatures and signature verification.  I will have to look into whether it can actually do the signing of specific file types.  If any of the requested functionality is possible and relevant to the stated purpose of the CryptoNG UDF, I will definitely look into adding that functionality.  If not, then it may be a separate project that I can look into tackling.  :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...