mathematical scheme for demonstrating the authenticity of a digital message or document (Wikipedia). A cryptographic toolkit is often used along with a public-private key pair to digitally sign a message and to verify a message.

learn more… | top users | synonyms

0
votes
0answers
10 views

how to digitally sign .deb debian package using certificate

I am currently signing some debian .deb packages with a self-signed PGP certificate, which I generated using gpg --gen-key and sign my .deb file but when i download that .deb in chrome is give me ...
0
votes
0answers
10 views

What certificate do I buy to sign XML?

We have a web service that exchanges data via XML document with a vendor. Each vendor needs to digitally sign the XML document to ensure the integrity of the data transmitted for audit purposes. I ...
0
votes
1answer
24 views

how to correctly sign an executable

So i made a little tool, a console application, that when running on Win7 brings the security box (UAC). i tried to sign this EXE file in VS 2010 using the following steps: 1- project properties 2- ...
0
votes
0answers
40 views

Correct way to sign and verify signature using bouncycastle

I am using bcmail-jdk16-1.46.jar and bcprov-jdk16-1.46.jar (Bouncycastle libraries) to sign a string and then verify the signature. This is my code to sign a string: package my.package; import ...
1
vote
0answers
22 views

C#.Net: How to sign only a portion of an XML file

I am trying to write a function to sign an XML file using SHA256. The resulting file has the correct digest value. Everything else seems to be correct as well, except for the Signature Value. My ...
0
votes
1answer
26 views

Creating and Verifying Digital Signatures

Verify a digital signature of a file(doc/pdf) in PHP i hv a project which requirement to ensure a doc or pdf file whatever it has a digital signature or not.If the file has a digital signature then ...
0
votes
1answer
16 views

How to construct a certificate based on another

I need to send a certificate through an asp.net page. An ActiveX would read the certificate from user's PC and with a click of a button, somehow the certificate should go to server to sign a document ...
0
votes
1answer
34 views

Sign PDF from usb Token Using MSCAPI & ITEXT

can anyone give me a simle example of pdf signing from usb token using MSCAPI and ITEXT. I do not want to use a fixed ocsp string. I tried to follow this Digital Signature book but it did not work. ...
9
votes
1answer
197 views

Android: digital signature using Bezier

I am trying two draw digital signature using Bezier as show in above image.when i touch and try to draw line then the result is dot line but not getting continuous line. Simple signature done by ...
0
votes
1answer
48 views

Issue with X509RevocationMode.Online in revoke certificate validation

I am validating the certificate revocation in online mode but the url mentioned in CRL Distribution Point is not getting hit if the CRL is already cached in memory. I am using fiddler to verify if the ...
0
votes
1answer
30 views

Windows OS signature

I am trying to add a signature some where within the OS to verify that an Windows image is correct. If you clone a computer with the image on it, it would be ok because it has all the stuff needed on ...
0
votes
0answers
24 views

InfoPath form 2010 Template certificate is expiring very often(1 month)

I have and InfoPath 2010 template, i am using C# code behind for this template. In order to publish this template on to infopath form library i have to digitally sign the template and publish. Due to ...
0
votes
0answers
31 views

How to manually add digital signatures to a pdf file [duplicate]

How would I go about appending certificate data containing a digital signature to a pdf file? The certificate would be a x509 public key certificate also containing the digital signature. As in, I ...
0
votes
3answers
47 views

Alternative to PKI digital signature

I'm looking for a way of transforming an xml document in a way that achieves the following goals: It can be distributed to known applications across the internet and managed by them without any ...
2
votes
1answer
27 views

Managed Windows Service starts up slowly after digital signing

We recently tried out digitally signing our .NET binaries. We have a Windows Service which typically starts up within 10 seconds. However after we started digitally signing it, the time increased to ...
3
votes
1answer
92 views

Working with digital signatures in Go

I would like to use signatures for a program that I am writing in Go, but I can't figure out the documentation, which is here. In particular, I would like to use the SignPKCS1v15 and VerifyPKCS1v15 ...
0
votes
1answer
51 views

How can I sign a file with PKCS11 in Python?

How can I sign a file with PKCS11 in Python? I'm looking for a way to sign a .txt file using a "Cryptographic Token Interface", but I haven't found a solution. My first idea was to use pycrypto, but ...
0
votes
1answer
60 views

OpenSSL RSA signature and PKCS#1 padding incorrect verification

I am generating an RSA signature of some data, using SHA-1 as the hash function, and PKCS#1 padding as the padding scheme, from a program in C++ interfacing with a smart card reader successfully. I ...
2
votes
3answers
166 views

How would an efficient OAuth2.0 server / provider work?

I may need to implement an OAuth2.0 server for an API I'm creating. This API would allow 3rd parties to perform actions on the user's behalf. OAuth2.0 has 3 mains calls. First, there is a call to ...
0
votes
3answers
62 views

Concept of Digital Signatures for a specific scenario

My company develops an ERP for hospitals and because of some legislation changes throughout this weekend I've been reading a lot on digital signature because I need to solve the following scenario: ...
3
votes
1answer
94 views

How to validate a digital signature?

I have spent 3 days reading and testing to understand a little what the hell is all this of digital signatures and code signing, why exists and how to sign my app... (Still don't learned 100%) Well, ...
-1
votes
2answers
101 views

Generate pdf empty signature fields free for commercial use

Is there any java lib that I can use (Itext is not free to use for commercial sites) to generate empty digital signature fields in java from servlets or jsp . I must have more than one empty signature ...
0
votes
1answer
34 views

Are OAuth2 bearer tokens signed?

It may be a stupid or naive question, but: Are OAuth2 bearer tokens signed? To put it in other words: Is the consumer able to verify whether the bearer token was issued by a specific authorization ...
0
votes
0answers
48 views

How to check whether the digitally signed document is correct

I am working on creating a PDF file which is digitally certified/signed. I am successfully able to sign my pdf document, using itext library. However, the certificate details on the adobe reader ...
2
votes
1answer
129 views

Digital signature made in C# does not verify in C++

I have a C# application which digitally signs data using RSA. The code is as follows: RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); rsa.ImportCspBlob(privateKeyBlob); SHA1 sha1 = ...
4
votes
1answer
119 views

How can I sign a message with a Bitcoin private key from terminal

I'm trying to sign a message with a Bitcoin private key to get a refund from InstaWallet. Any hints on how to do this from a terminal on OS X?
0
votes
0answers
39 views

Writing Java Signature byte to little endian

I need to write signatures in little endian format. Signature rsa= Signature.getInstance("SHA1withRSA","SunMSCAPI"); rsa.initSign(privateKey); //assuming privKey as private key .. //buffer is ...
1
vote
3answers
257 views

Determining if a file has a digital signature in c# without actually verifying the signature

Is there a simple way to check if a digital signature exists on a file without trying to verify the certificate it was signed with? I want to sign a long list of exe & dll files in a directory, ...
2
votes
0answers
69 views

X509Certificate2.Verify behaviour

I have a digitally signed binary app.exe. Certificate is issued by commercial CA. In file properties (on Windows), Digital Signature information says that This digital signature is OK. If I somehow ...
0
votes
1answer
129 views

get original content of a pdf signed with itextsharp

I'm trying to get the original document of a signed PDF in order to compare it's hash with an stored doc. This is really easy when the document has several signatures, with acrobat reader you can go ...
0
votes
0answers
85 views

How to get DSC(Digital Signature Certificates) Class using java code?

I have installed some DSC in my system, which helps in login to the application. When application load on browser an applet also get loaded, which list the installed DSC. First time when user ...
0
votes
1answer
119 views

Digital Signature SunMSCAPI provider & MS Crypto API

I want to sign file with the SunMSCAPI provider. As public key and signatures needs to be imported using MS Crypto API. Generally generating signatures with SHA1withRSA, ends up with big-endian to ...
1
vote
1answer
50 views

Authentication using GPG

I've been reading about authentication, both in-band and out-band. I know one can sign his/her own GPG key and then others can verify the signer using their fingerprint. I also read GPG key signing ...
3
votes
0answers
39 views

Canonical way to sign (and verify) an ELF file?

I would like to sign ELF files, preferably with a PGP key and later be able to verify the signature. Failing that I'll also go with a Authenticode or SSL certificate for signing if that makes more ...
0
votes
0answers
74 views

How to Remove Strong Name Key from my Visual Studio 2010 Project?

I've got a large Visual Studio application that our company uses internally. Originally, it was built in Visual Studio 2008 using a Strong Name Key so that employees on Windows Workstations could ...
1
vote
1answer
128 views

Signing PDF with Java itext library crashing for big files

I am using Itext library for PDF signing which works fine for small files under 50MB. But file which are larger in size are getting crash like if file size is 150MB then it gives Exception in thread ...
0
votes
0answers
125 views

How to do SHA256withRSA with USB token and IAIK PKCS#11 wrapper?

The underlying problem I'm trying to solve: Avoid the password dialog that pops up when using the standard java mechanisms. I have a USB token (www.suisseid.ch) and the following code works and ...
1
vote
1answer
93 views

Trouble verifying RSA PSS signature in Perl with Crypt::RSA and Crypt::RSA::SS::PSS

I'm unable to verify a PSS-signed signature in Perl using Crypt::RSA and Crypt::RSA::SS::PSS. Here's the situation: I have a device that has a 1024-bit RSA key, and signs data using PSS, SHA1 and ...
0
votes
0answers
53 views

Digitally signing document in silverlight

i have a some problem on getting digital signature of the file in silverlight. I`am using crypt32.dll functions to get signed hash , but i getting confused with unexpected error as a result of ...
1
vote
1answer
304 views

“The certificate in the signature cannot be verified” for Thawte certificate

I need to sign Application.exe file with the certificate that is stored in company.pfx. So, i used signtool: signtool.exe sign /p password /f company.pfx /t ...
0
votes
1answer
97 views

How to make a pdf signature visible (along with validity icons)

Initially the question was about making a pdf signature visible with Ruby. That i can do now with the code below. My only problem now is with the validity icon. It shows up on FoxIt Reader, but not ...
0
votes
1answer
136 views

uploading files to the php server from java applet while using digital signature for authenticity

I am developing an major project for my undergraduate degree. I have an java applet that is encrypting a file using aes algorithm. The file is then stored in local machine. Now I want to store that ...
0
votes
0answers
33 views

Digital signature verificaion

I have the following code where I am generating a digital signature for a file and then verifying the digital signature. However, I am always getting signature verifies:false. Where am I wrong. The ...
0
votes
0answers
108 views

Error when validating a Pdf signature with Itext

I'm trying to validate a PDF signature with Itext 5 and BouncyCastle 1.48. My code works for many signed pdf but on some pdf of a specific customer. Here's my Java code // The entry point public ...
0
votes
0answers
14 views

Space constrained asymmetric signature

I need to sign a small string with an asymmetric key encryption scheme. The signature will be stored on a small chip together with the signed string. I have very little space to spare (about 60bytes ...
0
votes
0answers
59 views

Get Signing time(time stamp) of a digital Signature using powershell

I have certain DLL and Exe , I have used powershell to check whether the file is digitally signed or not, Now what I want is to get the Time Stamp (Signing Time) of the digital Signature i.e whn the ...
1
vote
1answer
73 views

Identifying CSP provider in CryptoAPI

I am using MS CAPI APIs for using a USB token for digital signing. using CryptAcquireContext, I can print out the names of all the CSPs available, but how do I know which CSP is associated with a ...
0
votes
1answer
21 views

Why does off-the-record messaging offer repudiation but RSA does not? [closed]

In OTR messaging the encryption key is published after an encrypted message has been read by the recipient, so there is apparently no non-repudiation. In RSA the private key is obviously not ...
2
votes
2answers
155 views

What is the purpose for Java JNLP requiring a signature?

I have only a limited understanding of security basics and things like digital signatures. I understand, for example, how digital signatures are useful in public key cryptography. I do not, however, ...
1
vote
3answers
96 views

Signed applet loading signed jar reading file error

I'm working on a game at the moment and have made a JFrame loader which can load the game from the user.home directory, but recently decided I wanted it in a web applet as well. When I run the JFrame ...

1 2 3 4 5 14