question

omshankar-5638 avatar image
0 Votes"
omshankar-5638 asked YijingSun-MSFT answered

How to use copycom dll or other for digital signature with chrome browser

I am working on asp.net project and need to sign data.

I want to sign data with chrome instead of ie or other browser. Or I want to use secure technique to sign data from any browser.
Currently I am working copicom dll, which is now working with chrome.
What should I use secure technique to read digit signature and verify it.
Please provide need full solution with code.

Thanks.

dotnet-aspnet-general
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

YijingSun-MSFT avatar image
0 Votes"
YijingSun-MSFT answered

Hi @omshankar-5638 ,
As far as I think,you could use Cryptographic Signatures.You could uses the SHA1 algorithm and call the CreateSignature method to perform the signing.
And you need to have the information including of the public key of the party that signed the data,the digital signature,the data that was signed and the hash algorithm used by the signer to verify that data was signed by a particular party.
More details,you could refer to below article:
https://docs.microsoft.com/en-us/dotnet/standard/security/cryptographic-signatures
Best regards,
Yijing Sun


If the answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our  documentation  to enable e-mail notifications if you want to receive the related email notification for this thread.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.