Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
836 views

How to verify that timestamping is done correctly for signed code

I have just got my code signing certificate from StartSSL and am trying to sign our installer. The signing process goes well and I get an installer exe that Windows no longer complains about being ...
5
votes
7answers
130 views

Is there a way to digitally sign documents to prove they existed at a certain point in time

I'm curious if there is way to digitally sign documents (technically any piece of data), such as contracts or photos, so that 10 years from now, it can be proven that they are from this time, not ...
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
2answers
719 views

How Can I Prevent Needing to Re-sign My Code Every 1 or 2 Years?

I was reading What happens when a code signing certificate expires - Stack Overflow and wondering about a more solid answer. The answer provided was more about setting up your own CA. Even with your ...
3
votes
2answers
256 views

How to sign data in MySQL database revision safe (trusted timestamping)?

I am currently planning a project in which revision safety of the database data is important. This means: we want to be able to proof that the data in the database was not tempered with since it was ...
3
votes
2answers
342 views

How do I securely sign data with a timestamp?

I would like to sign records in a database with a secure timestamp to prove they have not been altered by anyone after that date. What methods or services should I consider? RFC 3161? Does anyone ...
3
votes
2answers
585 views

What is needed to setup a (personal) executable/code timestamp service?

We are using verisign's time stamp service currently, but every so often the time stamp server becomes unavailable - mostly due to our ISP failing. We now timestamp everything we build, even simple ...
2
votes
2answers
101 views

how to get trusted time in an app, ntp maybe?

My app will need to periodically access a trusted time source, so can not rely on system time since this one can be modified easily by user or batery failure etc. My first idea is to statically link ...
2
votes
0answers
241 views

IllegalAccessError with Android and BouncyCastle

I am trying to implement a timestamp request as seen here: http://bouncy-castle.1462172.n4.nabble.com/Timestamp-request-and-response-td1558231.html In j2se it works fine, but on android I get an ...
2
votes
1answer
273 views

openssl ts command not working - trusted timestamps

I'm trying to execute the following command with openssl ts according to the ts manual openssl ts -query -data myfile.foobar -cert -out request.tsq Problem: openssl:Error: 'ts' is an invalid ...
2
votes
2answers
356 views

Timestamp server rfc3161 response token generation in Python

I'm trying to implement tsa server on python using twisted. Currently I'm using openssl binary to generate response, but this seems ugly to me, that's why I'm trying to figure out how to make response ...
2
votes
3answers
2k views

Timestamp Response is Incorrect - BouncyCastle

Trying to request a timestamp (RFC 3161) by using BouncyCastle and connecting to http://timestamping.edelweb.fr/service/tsp. I do get a TimestampResponse back from the server but it seems to be ...
1
vote
1answer
133 views

TimeStampResponse

I am using Bouncy Castle to read response from Time Stamp server in .NET.Now i want to show time stamp server certificate to client, how can I read time stamp server certificate from response? Thanks ...
1
vote
1answer
426 views

Trusted Timestamps - understanding the format (rfc3161)

[edit: I've written a blogpost that explains everything in detail: look here] Hi! I'm desperately trying to build a service for trusted timestamps based on rfc3161. I've decided to use the free ...
1
vote
2answers
217 views

Why should we set a timestamp when we do a codesigning?

If I set a timestamp with signing, what happens? What if I don't set? Is it essential? Why is it recommended?
1
vote
1answer
492 views

Where is the certificate of a TSA stored in XAdES-T?

In XAdES-T, the <EncapsulatedTimeStamp/>-element contains the TimeStampToken received from a TSA and not the entire TimeStampResp. But this TimeStampToken does not contain the certificate of the ...
0
votes
0answers
41 views

TimeStampToken and Certificate Chain

I am using Bouncy Castle to read response from Time Stamp server in .NET. In response i have only signer certificate, but i need to include certificate chain, because time stamp server cannot be ...
0
votes
1answer
227 views

Trusted timestamping log files in Ubuntu 9.10

We have an ubuntu 9.10 server. There are some log files need to be archived and they must be timestamped to guarantee no change in time. I've found this page but couldn't found a proper solution for ...
0
votes
1answer
137 views

How to add timestamping signature to System.IO.Packaging.Package?

There is a way to create packages, add some parts and sign it with a X509Certificate. I would also like to add a timestamping signature to the package. If the certificate expires or gets revoked ...