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 forged 9 years from now.

For example, I could write a prediction of the future and sign it with convential means to prove that I wrote it, then timestamp-sign it so that when it comes true, I can prove I predicted it.

One way I thought of is that there could be a timestamping authority. You send them the data, they make a hash of the data + timestamp and encrypt the hash with RSA using their private key. A signed document thus exists of: data, timestamp, encrypted hash.

10 years from now, I hash the data + supposed timestamp, and check if it matches with the encrypted hash that I decrypt using the authority's public RSA key (which I trust). If it does, I known the timestamp is valid.

I can see 2 problems with that though:

  • An external authority is needed
  • The authority's private key would need to be kept extremely secret, because if it's revealed, all documents signed with it turn invalid.

Can you think of a solution without (one of) these problems?

link|improve this question

72% accept rate
Take a look at any signed windows DLL. Most of them are signed by the vendor and countersigned by a timestamping authority. That way when the vendor's certificate expires you can still check that the certificate was valid when the DLL was signed. – GregS Jul 17 '11 at 20:31
feedback

7 Answers

up vote 3 down vote accepted

This is called timestamping. The most widely used mechanism is defined in TSP specification (RFC 3161) and some others. The alternative method is used in MS Authenticode, but it's not documented and is not compatible with TSP.

TSP is used as a supplementary function in several encryption and digital signature standards, such as PDF, XAdES, CAdES, PAdES (AdES stands for "Advanced encryption standard"). PDF, XAdES and PAdES standards are applied to certain type(s) of data. CAdES is univeral format (as it can be applied for any generic data).

RFC 5544 offers a way to apply TSP to any generic data without signing this data.

TSP specification makes heavy use of PKI and X.509 certificates.

Timestamping services are provided by certificate authorities as a supplementary service. There also exist independent timestamping services.

You can run your own timestamping service, however timestamping requires use of special certificate (its key usage extensions are to be set in a specific way), so regular SSL or code signing certificates won't work.

Talking about "timestamping authorities" - you send them a hash (calculated during signing) and they sign this hash using their certificate. It's their business to keep the private key protected, and they usually charge for it.

The idea about third-party authority is that it certifies time. If you sign the data, you can put any time to the signature, and there's no way to check if it's correct or you have forged it. Only trusted third-party authority can be a proof of correctness of the timestamp.

link|improve this answer
feedback

Yes, there are commercial services that would securely timestamp documents or software.

There's an article in Wikipedia explaining this. Google quickly revealed one such service (I am not affiliated), I'm sure there are many more. There used to be a free one as well, but it's all a question of trust (i.e. whether the courts would trust "someone on the internet" vs. VeriSign).

link|improve this answer
feedback

RFC3161 is not the only way of secure timestamping.

A current area of research is to develop schemes where you have to put less trust in the third-party authority issuing the time stamps. With RFC3161-based timestamps you are more or less required to completely trust the authority. This presentation gives an overview of alternatives, most based on linking schemes. The idea is quite attractive because the timestamps would be under public scrutiny and there's no secret key involved that could possibly be leaked, thus providing inherently better security than today's standard RFC 3161 timestamps.

link|improve this answer
feedback

I guess that depends on your controls. An external authority would work, but it's the same thing as certifying it internally, technically speaking. It just depends on who you trust. Are you looking at preventing users from falsely certifying documents, or your developers?

link|improve this answer
I'm just curious, I don't have an actual use case. – Bart van Heukelom Jul 17 '11 at 20:01
feedback

Back in the day, people kept unopened sent documents sent through certified mail and called it a "poor man's copyright". I imagine you could do the same with any major, respected email site. Send yourself a copy of the document via Gmail or Hotmail or whatever, and keep the copy in your account -- the date/timestamp on the email should come from the service provider (not from your computer), so that would be pretty solid evidence I imagine.

link|improve this answer
The "mail it to yourself" trick is what made me think up this question :) – Bart van Heukelom Jul 17 '11 at 20:06
It does occur to me that if, for example, you were trying to win the JREF million dollar challenge by making predictions, they would point out that you could have just made like a million predictions and only shown them the ones that turned out right. Not sure if there's any way around that. – Andrew Furdell Jul 18 '11 at 7:14
feedback

In times past, I would have said 'lookup PublicTimeStamp.org', but it has had a somewhat chequered past. It still seems to be running - but the website is only barely working. If you got to http://PublicTimeStamp.org/ptb you will find recent values (today). But other parts of the system are not visible.

link|improve this answer
feedback

Check out easytimestamping.com. Timestamps (based on RFC3161) are issued by a Qualified Certification Authority accredited in the European Union, so that, in most EU countries, the timestamp has a guaranteed legal validity.

The authority's private key would need to be kept extremely secret, because if it's revealed, all documents signed with it turn invalid.

Qualified CA's are certified to comply (at least) with the standard ETSI TS 102 023 that imposes a variety of physical and software security measures for guaranteeing the protection of the private key.

PS: I am affiliated with easytimestamping.com

link|improve this answer
I'm not saying your site is shady, but both there and on securo.it it's hard to find which "Qualified Certification Authority accredited in the EU" you use. Why? – Bart van Heukelom Aug 30 '11 at 23:05
We don't say it simply because it does not matter. At least in Italy, as long as the CA is in the trusted list of accredited CA the issued timestamp has the same legal validity. It should be the same in other EU Countries for favoring interoperability, as required by the EU directive on digital signatures (1999/93/EC). Anyway, we are not hiding anything, just apply a timestamp and find it out! – mrucci Aug 30 '11 at 23:42
Well, if you were curious, others will too. So I added the name of our current Qualified CA provider here. Thanks for the feedback :) – mrucci Aug 31 '11 at 15:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.