Meki Cherkaoui | b0365a7 | 2012-02-18 00:59:57 -0800 | [diff] [blame^] | 1 | // JavaScript Document |
2 | var SignedInfo = function SignedInfo(_PublisherPublicKeyDigest,_Timestamp,_Type, _KeyLocator,_FreshnessSeconds,_FinalBlockID){ | ||||
3 | |||||
4 | this.PublisherPublicKeyDigest = _PublisherPublicKeyDigest; | ||||
5 | this.Timestamp = _Timestamp; | ||||
6 | this.FreshnessSeconds = _FinalBlockID; | ||||
7 | this.FinalBlockID = _FinalBlockID; | ||||
8 | this.KeyLocator= _KeyLocator; | ||||
9 | } | ||||
10 | |||||
11 | exports.SignedInfo = SignedInfo; | ||||
12 |