0
votes
2answers
49 views
How could I implement a digital signature in an application?
I'm developing a software in Ruby on Rails that saves information about documents that requires fisical signatures. The idea is do it all digital including the signature. How could …
0
votes
0answers
6 views
How can I use revisions to avoid invalidating digital signatures in a PDF?
Using Acrobat 9, if I sign a PDF using a self-signed certificate and then edit the PDF after I sign it, Acrobat will inform me that there is a valid signature on the document but t …
0
votes
1answer
64 views
WCF Sign outgoing message
Hi all,
I'm trying to get my head around wcf and have a test scenario where i want to recieve an unsigned SOAP message process it and return a signed SOAP message, where the body …
0
votes
2answers
34 views
Modifying digitally signed PDF’s
Hi all,
I'm looking for a way to add a watermark/text overlay to a PDF document that contains a digital signature. Currently we've licensed PDFlib which does a great job of handl …
3
votes
4answers
55 views
Where to get Certificate for digitally signing PDFs?
I'm working on a Java application that uses iText to digitally sign PDFs that will be made available online. I have been able to sign the documents with a test cert I obtained from …
1
vote
3answers
127 views
Verify DSA signature in C#
How can I verify a DSA signature in C#?
Given:
the message text,
a signed digest (typically ASN.1 DER format),
the public key (in a signed X.509 certificate, PEM or DER format) …
0
votes
1answer
48 views
How to sign a document in python with M2Crypto using particular padding technique?
I need to digitally sign some text in python using a private key stored in a .pem file. It seems like M2Crypto is the preferred way to do that these days, so that's what I'm using …
1
vote
1answer
41 views
How to validate if a signed jar contains a timestamp?
After a jar is signed and the -tsa option was used, how can I validate that the time stamp was included? I tried:
jarsigner -verify -verbose -certs myApp.jar
But the output does …
0
votes
2answers
232 views
WinVerifyTrust to check for a specific signature?
I'm implementing a process elevation helper for Windows. It's a program that will run in elevated mode and launch other programs with administrator privileges without displaying ad …
0
votes
4answers
384 views
Error occurred while decoding OAEP padding
in continuation of the http://stackoverflow.com/questions/949907/error-occurred-while-decoding-oaep-padding
question
I have modified my code and now i am trying this code
CspPara …
0
votes
1answer
17 views
Digitally Sign Data as it is Archived
I have an application that records data from a manufacturing process on a periodic basis (various sample rates, minimum of 1 sec, the usual max is 10 min or more). The customer wo …
0
votes
1answer
24 views
Storing private keys using DSACryptoServiceProvider
I'm trying to use the DSACryptoServiceProvider class with C# to create two DLLs: one will have the ability to verify and create digital signatures, the other will just be able to v …
0
votes
1answer
55 views
Java and .NET interop on (RSA) signatures
Hello,
I'm signing some data on a .net-based smartcard and trying to verify that signature in a java environment - but without success.
Smartcard (c#):
RSACryptoServiceProvider …
0
votes
3answers
95 views
What format signature does Openssl pkeyutl expect?
I'm trying to verify a file that was signed by hashing with SHA-1 and encrypting the hash with an RSA private key.
Obviously I'm using the RSA public key to verify. The key is in …
0
votes
3answers
115 views
Generating Digital Signature
I wanted to generate digital signature in my asp.net application based on some value
like date of birth. what is the way to do that ? i am using vb.net
