Tagged Questions

mathematical scheme for demonstrating the authenticity of a digital message or document (Wikipedia)

learn more… | top users | synonyms

16
votes
5answers
22k views

Using SHA1 and RSA with java.security.Signature vs. MessageDigest and Cipher

I'm trying to understand what the Java java.security.Signature class does. If I compute an SHA1 message digest, and then encrypt that digest using RSA, I get a different result to asking the Signature ...
12
votes
3answers
443 views

How can I validate digital signatures for Microsoft's Portable Executable format in portable code?

I am looking for sample code (or libraries) that can help me validate digital signatures for Windows PE files (.exe, .dll, .cab, .etc) on non-Windows platforms using C++. I am looking for a ...
12
votes
3answers
929 views

Securing an API: SSL & HTTP Basic Authentication vs Signature

When designing an API for our web app, we'll use the their subdomain as the 'username' and generate an API key/shared secret. Firstly, is it ok to use the subdomain as the username? I don't see the ...
11
votes
2answers
671 views

Checking digital signature programmatically from Delphi

I need a function in Delphi to verify the digital signature of an external EXE or DLL. In my particular application, I am going to occasionally invoke other processes, but for security purposes I ...
10
votes
3answers
349 views

How do I send signed emails from C# application?

I need to send signed emails from within my C# .NET application. Which is the easiest way to do this?
9
votes
5answers
9k views

How to Digitally Sign PDF files

I have a digital certificate that identifies an user. I need to use it to Digitally sign pdf files. Does anyone have an example that does not uses a third party component? I need to get this done but ...
8
votes
2answers
250 views

How to load external resources using a reference URI in Java XML

I am trying to extract an XML node from a URI reference. This URI reference is generated by an XAdES4j signer, and could reference a node within the same XML file, or in the same folder. I was hoping ...
8
votes
2answers
487 views

Delphi: how to do digital signature with timestamp of files?

Many customers of mine use a software for doing digital signatures. This software is called Dike and it is provided from the italian chamber of commerce and it interfaces to smart card hardware like ...
8
votes
3answers
439 views

How important is it to digitally sign our executables?

We produce a content management system. It's a DB-based system, used only by businesses and organizations, and never downloadable from the Internet. I.e., it's not the kind of software someone might ...
7
votes
8answers
3k views

How to digitally sign PDF documents in a web application?

I'm building a web application that most allow the user to digitally sign PDF documents with certificates installed in the client machine. The document, once signed, should be posted back to the ...
7
votes
2answers
7k views

In C#, sign an xml with a x.509 certificate and check the signature

I'm trying to sign an XML file using a x.509 certificate, I can use the private key to sign the document and then use the CheckSignature method (it has an overload that receives a certificate as ...
7
votes
3answers
932 views

CAPICOM - Verify SignedCode is from a Trusted Publisher without UI

I'm using CAPICOM in a .NET 3.0 C# app to check an Authenticode signature on an exe file. I need to make sure that the certificate is listed as a Trusted Publisher. Using signedCode.Verify(true) will ...
6
votes
2answers
1k views

What do I need to know about XML Signatures to get SAML working?

At work we have a web app that we'll need to interface with another company's web app using Single Sign On validated by SAML. Our web apps are written in PHP, and it's obviously irrelevant what ...
5
votes
0answers
42 views

How to verify SOAP signature w/ Delphi 2009?

I'm using the Clever Internet Suite in D2009 to sign a SOAP message and need a way to verify the signed document locally. The server keeps bouncing the SOAP message with the error "Hash values do not ...
5
votes
1answer
165 views

How do I add a timestamp when digitally signing a file in C#?

I tried to implement in .NET C# an utility similar to signtool.exe. To digitally sign a file, I used the classes SignedCms and CmsSigner. CmsSigner signer; ... SignedCms content = new ...
5
votes
1answer
256 views

PKCS#7 SignedData and multiple digest algorithms

I'm investigating upgrading an application from SHA1 as the default PKCS#7 SignedData digest algorithm to stronger digests such as SHA256, in ways that preserve backwards compatibility for signature ...
5
votes
2answers
237 views

Should Open-Source Libraries be Digitally Signed

It is a good practice to always sign executable files (exe, dll, ocx, etc.). On the other hand, with an open source project it may considered disregarding the contributions to the project from all ...
5
votes
3answers
758 views

Adding a digital signature to a pdf file

In the application a user will upload a PDF file and then upload a personal signature created using a digital pen. How can I embed this signature in the pdf file?
5
votes
2answers
429 views

How to digitally sign PDF files with smartcards in .NET?

I have a smartcard that stores my digital certificate. When I plug it into my PC, the certificate shows up at the Windows certificate store, under IE > Tools > Internet Options > Content > ...
5
votes
2answers
1k views

Is there an easier way to sign an XML document in Java?

I'm trying to digitally sign an XML document using Java. I've got an implementation working with some references I've found that use various implementations in the javax.xml.crypto.dsig package. ...
5
votes
1answer
753 views

How to verify that my orgainization signed a trusted windows binary?

This is a followup question to question 1072540, 'WinVerifyTrust to check for a specific signature?'. I want to write a C++ function Lets call it 'TrustedByUs' of the form: bool ...
5
votes
2answers
933 views

Should interop assemblies be signed?

We have a set of COM components developed in VC++. When a reference to such component is added to a .NET project Visual Studio generates an interop assembly. We have a set of such assemblies now. ...
5
votes
5answers
419 views

Maintaining message integrity

I have a message that I am passing to myself which will be subject to man-in-the-middle attacks. Because of that, I am concerned about the integrity of the message being maintained between the time I ...
4
votes
1answer
202 views

Digital Signature with BouncyCastle

I tried to sign a byte[] (which is my sha256 digest of my document) with bouncy castle and a certificate in this specification : ...
4
votes
1answer
95 views

git verify trusted tags

I would like to include git tag -v command into the deployment process to catch unsigned tags or tags signed by a non-trusted GPG key. The command returns with an exit code of 0 if the tag has a ...
4
votes
1answer
306 views

M2crypto signature “algorithm”

These two codes provide the same signature, which is expected: code1: from M2Crypto import RSA, EVP import base64, hashlib text = "some text" pkey = EVP.load_key("mykey.pem") #"mykey.pem" was ...
4
votes
1answer
151 views

What's the difference between a Java certificate and a vba certificate?

I already own a certificate from Verisign for signing Java code. To support a Java application, I have written an Outlook macro and want to sign it. This doesn't work using the Java certificate. Can ...
4
votes
1answer
204 views

How to digitally sign an xml document through the client's browser?

When I visit a site which requires a client-side certificate the browser automatically opens a popup asking me which personal certificate I would like to use to connect. Is there any similar ...
4
votes
4answers
582 views

When should I use SHA-1 and when should I use SHA-2?

In my c# application, I'm using RSA to sign files before being uploaded on the database of my company by the person who is uploading and here I have to choose SHA-1 or SHA-2 for computing the hash. As ...
4
votes
1answer
338 views

Verify Authenticode signature as being from our company for automatic updater

I am implementing an automatic update feature and need some advice on how to do this securely using best practices. I would like to use the downloaded file's Authenticode signature to verify that it ...
4
votes
2answers
438 views

Lockbox digital signature component problem

I'm evaluating TurboPower LockBox library for digital signing. I've created a 1024 bit RSA key and tried to sign a 260 bytes of text with it. After changing one or two characters in the text the ...
4
votes
2answers
201 views

what happens to exe when we sign it?

After signing exe by using VeriSign, if we right click to exe we can see "digital signature" tab which gives information about certificate. Where exactly this information will be stored? I mean how ...
4
votes
3answers
928 views

PHP/Amazon S3: Query string authentication sometimes fails

I created a simple file browser in PHP that links to the files through generation expiring query URLs. So for each access to a directory, a link to each file is generated that is valid for say 900 ...
4
votes
6answers
825 views

Canonicalizing XML in Ruby

I'm working on a SAML gateway using Ruby/Rails and I'm attempting to write some code that validates the xml digital signature of the incoming SAML response against the x509 cert of the originating ...
4
votes
2answers
1k views

Securing a license key with RSA key

it's late, I'm tired, and probably being quite dense.... I have written an application that I need to secure so it will only run on machines that I generate a key for. What I am doing for now is ...
4
votes
1answer
1k 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 not specify ...
4
votes
4answers
493 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 GlobalSign and it ...
4
votes
3answers
753 views

Check signature of Linux shared-object before load

Goal: Load .so or executable that has been verified to be signed (or verified against an arbitrary algorithm). I want to be able to verify a .so/executable and then load/execute that .so/executable ...
4
votes
4answers
722 views

What to use? Digital signature?

Sorry I couldn't find the best heading for this question. Following is my requirement. I a working on a project which deals which large amount of money transactions to different account. The system ...
4
votes
3answers
1k views

Any delphi component for digital signing documents?

I'm looking for a good standard based component for digitally sign documents with x509 certificates. I can't see no one native component for this. Only Activex components.
4
votes
3answers
804 views

.NET ClickOnce and Vista start-up

We have some software we use internally which is released via ClickOnce from VS 2008. The app needs to run on everyones computer all the time so the obvious solution is to have it in the Start Up ...
3
votes
1answer
57 views

Validate signed PDF with PHP

I have PDF file with digital signature. Also i have certificate (public accessed). How can i check with PHP signature of this PDF file (to be sure that signature is correct)?
3
votes
2answers
210 views

Google OAuthGetRequestToken returns “signature_invalid”

Trying for hours to get a request token using Google OAuthGetRequestToken but it always returns "signature_invalid". For a test I use the oAuth Playground to successfully request the token. Here are ...
3
votes
1answer
120 views

OpenSSL Java bindings for Java Cryptography Architecture (JCA)

I'm developing a Java project that needs to use a FIPS 140-2 certified module for crypto signatures. I'm leaning towards using the OpenSSL FIPS Object Module. After browsing around the webs, I ...
3
votes
1answer
620 views

RSA signature size?

I would like to know what is the length of RSA signature ? Is it always the same size as the RSA key size like if the key size is 1024 then RSA signature is 128 bytes , if the key size is 512 bits ...
3
votes
3answers
75 views

Cryptographic Time

Is there a cryptographic mechanism by which it is possible to sign a document with a date, such that it is not possible to forge that same signature at a later date? Maybe some sort of server that ...
3
votes
1answer
225 views

Why do i get a signature over the certificate in my soap header

I need to communicate with a soap service that supports Soap1.1 en WS Security 1.0. I have put up some code in C# that communicates with this service, but it's returning an FaultException. One of the ...
3
votes
1answer
52 views

django sign item with some extra values

i recently posted a question on here and now need another answer on this based on an alteration that needs to be done based on extra params. previously I had the following that gave me a correct ...
3
votes
1answer
829 views

How to verify an XML signature in an iOS application?

I've been tossed into the world of XML digital signatures with an iOS project I'm working on; I need to verify the digital signature of a SAML assertion. I've been reading a lot about validating XML ...
3
votes
1answer
123 views

Is it possible to view digitally signed pdfs on the iphone or ipad?

When I try to view a sample digitally signed pdf in a UIWebView, I get blank pages. The number of pages is correct, but they are all blank. Normal pdfs show up correctly. I am not looking for ...

1 2 3 4 5 8