This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
sunlight.xml
1235 lines (1203 loc) · 61.7 KB
/
sunlight.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<?rfc symrefs="yes"?>
<?rfc toc="yes"?>
<rfc ipr="trust200902" docName="draft-laurie-pki-sunlight-12" category="exp">
<front>
<title>Certificate Transparency</title>
<author initials="B" surname="Laurie" fullname="Ben Laurie">
<organization abbrev="Google">
Google UK Ltd.
</organization>
<address>
<email>[email protected]</email>
</address>
</author>
<author initials="A" surname="Langley" fullname="Adam Langley">
<organization abbrev="Google">
Google Inc.
</organization>
<address>
<email>[email protected]</email>
</address>
</author>
<author initials="E" surname="Kasper" fullname="Emilia Kasper">
<organization abbrev="Google">
Google Switzerland GmbH
</organization>
<address>
<email>[email protected]</email>
</address>
</author>
<date year='2013'></date>
<abstract>
<t>
This document describes an experimental protocol for publicly logging the existence of TLS certificates as they are issued or observed, in a manner that allows anyone to audit certificate authority activity and notice the issuance of suspect certificates, as well as to audit the certificate logs themselves. The intent is that eventually clients would refuse to honor certificates which do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.
</t>
<t>
Logs are network services which implement the protocol operations for submissions and queries that are defined in this document.
</t>
</abstract>
</front>
<middle>
<section title="Informal introduction">
<t>
Certificate Transparency aims to mitigate the problem of misissued certificates by providing publicly auditable, append-only, untrusted logs of all issued certificates. The logs are publicly auditable so that it is possible for anyone to verify the correctness of each log, and to monitor when new certificates are added to it. The logs do not themselves prevent misissue, but they ensure that interested parties (particularly those named in certificates) can detect such misissuance. Note that this is a general mechanism, but in this document we only describe its use for public TLS server certificates issued by public certificate authorities (CAs).
</t>
<t>
Each log consists of certificate chains, which can be submitted by anyone. It is expected that public CAs will contribute all their newly-issued certificates to one or more logs; it is also expected that certificate holders will contribute their own certificate chains. In order to avoid logs being spammed into uselessness, it is required that each chain is rooted in a known CA certificate. When a chain is submitted to a log, a signed timestamp is returned, which can later be used to provide evidence to clients that the chain has been submitted. TLS clients can thus require that all certificates they see have been logged.
</t>
<t>
Those who are concerned about misissue can monitor the logs, asking them regularly for all new entries, and can thus check whether domains they are responsible for have had certificates issued that they did not expect. What they do with this information, particularly when they find that a misissuance has happened, is beyond the scope of this document, but broadly speaking they can invoke existing business mechanisms for dealing with misissued certificates. Of course, anyone who wants can monitor the logs, and if they believe a certificate is incorrectly issued, take action as they see fit.
</t>
<t>
Similarly, those who have seen signed timestamps from a particular log can later demand a proof of inclusion from that log. If the log is unable to provide this (or, indeed, if the corresponding certificate is absent from monitors' copies of that log), that is evidence of the incorrect operation of the log. The checking operation is asynchronous to allow TLS connections to proceed without delay, despite network connectivity issues and the vagaries of firewalls.
</t>
<t>
The append-only property of each log is technically achieved using Merkle Trees, which can be used to show that any particular version of the log is a superset of any particular previous version. Likewise, Merkle Trees avoid the need to blindly trust logs: if a log attempts to show different things to different people, this can be efficiently detected by comparing tree roots and consistency proofs. Similarly, other misbehaviours of any log (e.g., issuing signed timestamps for certificates they then don't log) can be efficiently detected and proved to the world at large.
</t>
<section title="Requirements Language">
<t>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in <xref target="RFC2119">RFC 2119</xref>.
</t>
</section>
<section title="Data structures">
<t>
Data structures are defined according to the conventions laid out in section 4 of <xref target="RFC5246"/>.
</t>
</section>
</section>
<section title="Cryptographic components">
<section title="Merkle Hash Trees">
<t>
Logs use a binary Merkle hash tree for efficient auditing. The hashing algorithm is <xref target="FIPS.180-2.2002">SHA-256</xref> (note that this is fixed for this experiment but it is anticipated that each log would be able to specify a hash algorithm). The input to the Merkle Tree Hash is a list of data entries; these entries will be hashed to form the leaves of the Merkle hash tree. The output is a single 32-byte Merkle Tree Hash. Given an ordered list of n inputs, D[n] = {d(0), d(1), ..., d(n-1)}, the Merkle Tree Hash (MTH) is thus defined as follows:
</t>
<t>
The hash of an empty list is the hash of an empty string:
<vspace blankLines='1' />
MTH({}) = SHA-256().
<vspace blankLines='1' />
The hash of a list with one entry (also known as a leaf hash) is:
<vspace blankLines='1' />
MTH({d(0)}) = SHA-256(0x00 || d(0)).
<vspace blankLines='1' />
For n > 1, let k be the largest power of two smaller than n (i.e., k < n <= 2k). The Merkle Tree Hash of an n-element list D[n] is then defined recursively as
<vspace blankLines='1' />
MTH(D[n]) = SHA-256(0x01 || MTH(D[0:k]) || MTH(D[k:n])),
<vspace blankLines='1' />
where || is concatenation and D[k1:k2] denotes the list {d(k1), d(k1+1),..., d(k2-1)} of length (k2 - k1). (Note that the hash calculation for leaves and nodes differ. This domain separation is required to give second preimage resistance.)
</t>
<t>
Note that we do not require the length of the input list to be a power of two. The resulting Merkle tree may thus not be balanced, however, its shape is uniquely determined by the number of leaves. [This Merkle tree is essentially the same as the <xref target='CrosbyWallach'>history tree</xref> proposal, except our definition handles non-full trees differently.]
</t>
<section title="Merkle audit paths" anchor='merkle_paths'>
<t>
A Merkle audit path for a leaf in a Merkle hash tree is the shortest list of additional nodes in the Merkle tree required to compute the Merkle Tree Hash for that tree. Each node in the tree is either a leaf node, or is computed from the two nodes immediately below it (i.e., towards the leaves). At each step up the tree (towards the root), a node from the audit path is combined with the node computed so far. In other words, the audit path consists of the list of missing nodes required to compute the nodes leading from a leaf to the root of the tree. If the root computed from the audit path matches the true root, then the audit path is proof that the leaf exists in the tree.
</t>
<t> Given an ordered list of n inputs to the tree, D[n] = {d(0), ..., d(n-1)}, the Merkle audit path PATH(m, D[n]) for the (m+1)th input d(m), 0 <= m < n, is defined as follows:
</t>
<t>
The path for the single leaf in a tree with a one-element input list D[1] = {d(0)} is empty:
<vspace blankLines='1' />
PATH(0, {d(0)}) = {}
<vspace blankLines='1' />
For n > 1, let k be the largest power of two smaller than n. The path for the (m+1)th element d(m) in a list of n > m elements is then defined recursively as
<vspace blankLines='1' />
PATH(m, D[n]) = PATH(m, D[0:k]) : MTH(D[k:n]) for m < k; and
<vspace blankLines='1' />
PATH(m, D[n]) = PATH(m - k, D[k:n]) : MTH(D[0:k]) for m >= k,
<vspace blankLines='1' />
where : is concatenation of lists and D[k1:k2] denotes the length (k2 - k1) list {d(k1), d(k1+1),..., d(k2-1)} as before.
</t>
</section>
<section title="Merkle consistency proofs" anchor='consistency'>
<t>
Merkle consistency proofs prove the append-only property of the tree. A Merkle consistency proof for a Merkle Tree Hash MTH(D[n]) and a previously advertised hash MTH(D[0:m]) of the first m leaves, m <= n, is the list of nodes in the Merkle tree required to verify that the first m inputs D[0:m] are equal in both trees. Thus, a consistency proof must contain a set of intermediate nodes (i.e., commitments to inputs) sufficient to verify MTH(D[n]), such that (a subset of) the same nodes can be used to verify MTH(D[0:m]). We define an algorithm that outputs the (unique) minimal consistency proof.
</t>
<t>
Given an ordered list of n inputs to the tree, D[n] = {d(0), ..., d(n-1)}, the Merkle consistency proof PROOF(m, D[n]) for a previous Merkle Tree Hash MTH(D[0:m]), 0 < m < n, is defined as:
<vspace blankLines='1' />
PROOF(m, D[n]) = SUBPROOF(m, D[n], true)
<vspace blankLines='1' />
The subproof for m = n is empty if m is the value for which PROOF was originally requested (meaning that the subtree Merkle Tree Hash MTH(D[0:m]) is known):
<vspace blankLines='1' />
SUBPROOF(m, D[m], true) = {}
<vspace blankLines='1' />
The subproof for m = n is the Merkle Tree Hash committing inputs D[0:m] otherwise:
<vspace blankLines='1' />
SUBPROOF(m, D[m], false) = {MTH(D[m])}
<vspace blankLines='1' />
For m < n, let k be the largest power of two smaller than n. The subproof is then defined recursively.
<vspace blankLines='1' />
If m <= k, the right subtree entries D[k:n] only exist in the current tree. We prove that the left subtree entries D[0:k] are consistent and add a commitment to D[k:n]:
<vspace blankLines='1' />
SUBPROOF(m, D[n], b) = SUBPROOF(m, D[0:k], b) : MTH(D[k:n]).
<vspace blankLines='1' />
If m > k, the left subtree entries D[0:k] are identical in both trees. We prove that the right subtree entries D[k:n] are consistent and add a commitment to D[0:k].
<vspace blankLines='1' />
SUBPROOF(m, D[n], b) = SUBPROOF(m - k, D[k:n], false) : MTH(D[0:k]).
<vspace blankLines='1' />
Here : is concatenation of lists and D[k1:k2] denotes the length (k2 - k1) list {d(k1), d(k1+1),..., d(k2-1)} as before.
</t>
<t>
The number of nodes in the resulting proof is bounded above by ceil(log2(n)) + 1.
</t>
</section>
<section title="Example">
<t>
The binary Merkle tree with 7 leaves:
<figure>
<artwork>
hash
/ \
/ \
/ \
/ \
/ \
k l
/ \ / \
/ \ / \
/ \ / \
g h i j
/ \ / \ / \ |
a b c d e f d6
| | | | | |
d0 d1 d2 d3 d4 d5
</artwork>
</figure>
</t>
<t>
The audit path for d0 is [b, h, l].
</t>
<t>
The audit path for d3 is [c, g, l].
</t>
<t>
The audit path for d4 is [f, j, k].
</t>
<t>
The audit path for d6 is [i, k].
</t>
<t>
The same tree, built incrementally in four steps:
<figure>
<artwork>
hash0 hash1=k
/ \ / \
/ \ / \
/ \ / \
g c g h
/ \ | / \ / \
a b d2 a b c d
| | | | | |
d0 d1 d0 d1 d2 d3
hash2 hash
/ \ / \
/ \ / \
/ \ / \
/ \ / \
/ \ / \
k i k l
/ \ / \ / \ / \
/ \ e f / \ / \
/ \ | | / \ / \
g h d4 d5 g h i j
/ \ / \ / \ / \ / \ |
a b c d a b c d e f d6
| | | | | | | | | |
d0 d1 d2 d3 d0 d1 d2 d3 d4 d5
</artwork>
</figure>
</t>
<t>
The consistency proof between hash0 and hash is PROOF(3, D[7]) = [c, d, g, l]. c, g are used to verify hash0, and d, l are additionally used to show hash is consistent with hash0.
</t>
<t>
The consistency proof between hash1 and hash is PROOF(4, D[7]) = [l]. hash can be verified, using hash1=k and l.
</t>
<t>
The consistency proof between hash2 and hash is PROOF(6, D[7]) = [i, j, k]. k, i are used to verify hash2, and j is additionally used to show hash is consistent with hash2.
</t>
</section>
<section title="Signatures">
<t>
Various data structures are signed. A log MUST use either elliptic curve signatures using the NIST P-256 curve (section D.1.2.3 of <xref target="DSS">DSS</xref>) or RSA signatures (RSASSA-PKCS1-V1_5 with SHA-256, section 8.2 of <xref target="RFC3447"/>) using a key of at least 2048 bits.
</t>
</section>
</section>
</section>
<section title="Log Format and Operation">
<t>
Anyone can submit certificates to certificate logs for public auditing, however, since certificates will not be accepted by TLS clients unless logged, it is expected that certificate owners or their CAs will usually submit them. A log is a single, ever-growing, append-only Merkle Tree of such certificates.
</t>
<t>
When a valid certificate is submitted to a log, the log MUST immediately return a Signed Certificate Timestamp (SCT). The SCT is the log's promise to incorporate the certificate in the Merkle Tree within a fixed amount of time known as the Maximum Merge Delay (MMD). If the log has previously seen the certificate, it MAY return the same SCT as it returned before. TLS servers MUST present an SCT from one or more logs to the TLS client together with the certificate. TLS clients MUST reject certificates that do not have a valid SCT for the end-entity certificate.
</t>
<t>
Periodically, each log appends all its new entries to the Merkle Tree, and signs the root of the tree. Auditors can thus verify that each certificate for which an SCT has been issued indeed appears in the log. The log MUST incorporate a certificate in its Merkle Tree within the Maximum Merge Delay period after the issuance of the SCT.
</t>
<t>
Log operators MUST NOT impose any conditions on retrieving or sharing data from the log.
</t>
<section title="Log Entries">
<t>
Anyone can submit a certificate to any log. In order to enable attribution of each logged certificate to its issuer, the log SHALL publish a list of acceptable root certificates (this list might usefully be the union of root certificates trusted by major browser vendors). Each submitted certificate MUST be accompanied by all additional certificates required to verify the certificate chain up to an accepted root certificate. The root certificate itself MAY be omitted from the chain submitted to the log server.
</t>
<t>
Alternatively, (root as well as intermediate) Certificate Authorities may submit a certificate to logs prior to issuance. To do so, the CA submits a Precertificate that the log can use to create an entry that will be valid against the issued certificate. The Precertificate is constructed from the certificate to be issued by adding a special critical poison extension (OID 1.3.6.1.4.1.11129.2.4.3, whose extnValue OCTET STRING contains ASN.1 NULL data (0x05 0x00)) to the end entity TBSCertificate (this extension is to ensure that the Precertificate cannot be validated by a standard X.509v3 client), and signing the resulting TBSCertificate <xref target='RFC5280'/> with either
<list style="symbols">
<t>
a special-purpose (CA:true, Extended Key Usage: Certificate Transparency, OID 1.3.6.1.4.1.11129.2.4.4) Precertificate Signing Certificate. The Precertificate Signing Certificate MUST be directly certified by the (root or intermediate) CA certificate that will ultimately sign the end entity TBSCertificate yielding the end entity certificate (note that the log may relax standard validation rules to allow this, so long as the issued certificate will be valid),
</t>
<t>
or, the CA certificate that will sign the final certificate.
</t>
</list>
As above, the Precertificate submission MUST be accompanied by the Precertificate Signing Certificate, if used, and all additional certificates required to verify the chain up to an accepted root certificate. The signature on the TBSCertificate indicates the Certificate Authority's intent to issue a certificate. This intent is considered binding (i.e., misissuance of the Precertificate is considered equal to misissuance of the final certificate). Each log verifies the Precertificate signature chain, and issues a Signed Certificate Timestamp on the corresponding TBSCertificate.
</t>
<t>
Logs MUST verify that the submitted end entity certificate or Precertificate has a valid signature chain leading back to a trusted root CA certificate, using the chain of intermediate CA certificates provided by the submitter. Logs MAY accept certificates that have expired, are not yet valid, have been revoked or are otherwise not fully valid according to X.509 verification rules in order to accommodate quirks of CA certificate issuing software. However, logs MUST refuse to publish certificates without a valid chain to a known root CA. If a certificate is accepted and an SCT issued, the accepting log MUST store the entire chain used for verification including the certificate or Precertificate itself, and including the root certificate used to verify the chain (even if it was omitted from the submission) and MUST present this chain for auditing upon request. This chain is required to prevent a CA avoiding blame by logging a partial or empty chain [Note: this effectively excludes self-signed and DANE-based certificates until some mechanism to control spam for those certificates is found - the authors welcome suggestions].
</t>
<t>
Each certificate entry in a log MUST include the following components:
</t>
<figure>
<artwork>
enum { x509_entry(0), precert_entry(1), (65535) } LogEntryType;
struct {
LogEntryType entry_type;
select (entry_type) {
case x509_entry: X509ChainEntry;
case precert_entry: PrecertChainEntry;
} entry;
} LogEntry;
opaque ASN.1Cert<1..2^24-1>;
struct {
ASN.1Cert leaf_certificate;
ASN.1Cert certificate_chain<0..2^24-1>;
} X509ChainEntry;
struct {
ASN.1Cert pre_certificate;
ASN.1Cert precertificate_chain<0..2^24-1>;
} PrecertChainEntry;
</artwork>
</figure>
<t>
Logs MAY limit the length of chain they will accept.
</t>
<t>
<spanx style="verb">entry_type</spanx> is the type of this entry. Future revisions of this protocol version may add new LogEntryType values. <xref target="client_messages"/> explains how clients should handle unknown entry types.
</t>
<t>
<spanx style="verb">leaf_certificate</spanx> is the end-entity certificate submitted for auditing.
</t>
<t>
<spanx style="verb">certificate_chain</spanx> is a chain of additional certificates required to verify the end entity certificate. The first certificate MUST certify the end entity certificate. Each following certificate MUST directly certify the one preceding it. The final certificate MUST be a root certificate accepted by the log.
</t>
<t>
<spanx style="verb">pre_certificate</spanx> is the Precertificate submited for auditing.
</t>
<t>
<spanx style="verb">precertificate_chain</spanx> is a chain of additional certificates required to verify the Precertificate submission. The first certificate MAY be a valid Precertificate Signing Certificate, and MUST certify the first certificate. Each following certificate MUST directly certify the one preceding it. The final certificate MUST be a root certificate accepted by the log.
</t>
</section>
<section title="Structure of the Signed Certificate Timestamp">
<figure>
<artwork>
enum { certificate_timestamp(0), tree_hash(1), (255) }
SignatureType;
enum { v1(0), (255) }
Version;
struct {
opaque key_id[32];
} LogID;
opaque TBSCertificate<1..2^24-1>;
struct {
opaque issuer_key_hash[32];
TBSCertificate tbs_certificate;
} PreCert;
opaque CtExtensions<0..2^16-1>;
</artwork>
</figure>
<t>
<spanx style="verb">key_id</spanx> is the SHA-256 hash of the log's public key, calculated over the DER encoding of the key represented as SubjectPublicKeyInfo.
</t>
<t>
<spanx style="verb">issuer_key_hash</spanx> is the SHA-256 hash of the certificate issuer's public key, calculated over the DER encoding of the key represented as SubjectPublicKeyInfo. This is needed to bind the issuer to the final certificate.
</t>
<t>
<spanx style="verb">tbs_certificate</spanx> is the DER encoded TBSCertificate (see <xref target='RFC5280'/>) component of the Precertificate - that is, without the signature and the poison extension. If the Precertificate is not signed with the CA certificate that will issue the final certificate, then the TBSCertificate also has its issuer changed to that of the CA that will issue the final certificate. Note that it is also possible to reconstruct this TBSCertificate from the final certificate by extracting the TBSCertificate from it and deleting the SCT extension. Also note that since the TBSCertificate contains an AlgorithmIdentifier that must match both the pre-certificate signature algorithm and final certificate signature algorithm, they must be signed with the same algorithm and parameters. If the Precertificate is issued using a Precertificate Signing Certificate, and an Authority Key Identifier extension is present in the TBSCertificate, the corresponding extension must also be present in the Precertificate Signing Certificate - in this case, the TBSCertificate also has its Authority Key Identifier changed to match the final issuer.
</t>
<figure>
<artwork>
struct {
Version sct_version;
LogID id;
uint64 timestamp;
CtExtensions extensions;
digitally-signed struct {
Version sct_version;
SignatureType signature_type = certificate_timestamp;
uint64 timestamp;
LogEntryType entry_type;
select(entry_type) {
case x509_entry: ASN.1Cert;
case precert_entry: PreCert;
} signed_entry;
CtExtensions extensions;
};
} SignedCertificateTimestamp;
</artwork>
</figure>
<t>
The encoding of the digitally-signed element is defined in <xref target='RFC5246'/>.
</t>
<t>
<spanx style="verb">sct_version</spanx> is the version of the protocol the SCT conforms to. This version is v1.
</t>
<t>
<spanx style="verb">timestamp</spanx> is the current <xref target="RFC5905">NTP Time</xref>, measured since the epoch (January 1, 1970, 00:00), ignoring leap seconds, in milliseconds.
</t>
<t>
<spanx style="verb">entry_type</spanx> may be implicit from the context in which the SCT is presented.
</t>
<t>
<spanx style="verb">signed_entry</spanx> is the <spanx style="verb">leaf_certificate</spanx> (in case of an X509ChainEntry), or is the PreCert (in case of a PrecertChainEntry), as described above.
</t>
<t>
<spanx style="verb">extensions</spanx> are future extensions to this protocol version (v1). Currently, no extensions are specified.
</t>
</section>
<section title="Including the Signed Certificate Timestamp in the TLS Handshake">
<t>
The SCT data corresponding to the end entity certificate from at least one log must be included in the TLS handshake, either by using an X509v3 certificate extension as described below, by using a TLS Extension (section 7.4.1.4 of <xref target='RFC5246'/>) with type [TBD], or by using OCSP Stapling (section 8 of <xref target='RFC6066'/>), where the response includes an OCSP extension with OID 1.3.6.1.4.1.11129.2.4.5 (see <xref target='RFC2560'/>) and body:
</t>
<figure>
<artwork>
SignedCertificateTimestampList ::= OCTET STRING
</artwork>
</figure>
<t>
At least one SCT MUST be included. Server operators MAY include more than one SCT.
</t>
<t>
Similarly, a Certificate Authority MAY submit a precertificate to more than one log, and all obtained SCTs can be directly embedded in the final certificate, by encoding the SignedCertificateTimestampList structure as an ASN.1 OCTET STRING and inserting the resulting data in the TBSCertificate as an X.509v3 certificate extension (OID 1.3.6.1.4.1.11129.2.4.2). Upon receiving the certificate, clients can reconstruct the original TBSCertificate to verify the SCT signature.
</t>
<t>
The contents of the ASN.1 OCTET STRING embedded in an OCSP extension or X509v3 certificate extension are as follows:
</t>
<figure>
<artwork>
opaque SerializedSCT<1..2^16-1>;
struct {
SerializedSCT sct_list <1..2^16-1>;
} SignedCertificateTimestampList;
</artwork>
</figure>
<t>
Here <spanx style="verb">SerializedSCT</spanx> is an opaque bytestring that contains the serialized TLS structure. This encoding ensures that TLS clients can decode each SCT individually (i.e., if there is a version upgrade, out of date clients can still parse old SCTs while skipping over new SCTs whose version they don't understand).
</t>
<t>
Likewise, SCTs can be embedded in a TLS Extension. See below for details.
</t>
<t>
TLS clients MUST implement all three mechanisms. Servers MUST implement at least one of the three mechanisms. Note that existing TLS servers can generally use the certificate extension mechanism without modification.
</t>
<t>
TLS servers should send SCTs from multiple logs in case one or more logs is not acceptable to the client (for example, if a log has been struck off for misbehaviour or has had a key compromise).
</t>
<section title="TLS Extension">
<t>
The SCT can be sent during the TLS handshake using a TLS extension, type [TBD].
</t>
<t>
Clients that support the extension SHOULD send a ClientHello extension with the appropriate type and empty <spanx style="verb">extension_data</spanx>.
</t>
<t>
Servers MUST only send SCTs to clients who have indicated support for the extension in the ClientHello, in which case the SCTs are sent by setting the <spanx style="verb">extension_data</spanx> to a <spanx style="verb">SignedCertificateTimestampList</spanx>.
</t>
<t>
Session resumption uses the original session information: clients SHOULD include the extension type in the ClientHello but if the session is resumed, the server is not expected to process it or include the extension in the ServerHello.
</t>
</section>
</section>
<section title="Merkle Tree" anchor="tree">
<t>
The hashing algorithm for the Merkle Tree Hash is SHA-256.
</t>
<t>
Structure of the Merkle Tree input:
</t>
<figure>
<artwork>
enum { timestamped_entry(0), (255) }
MerkleLeafType;
struct {
uint64 timestamp;
LogEntryType entry_type;
select(entry_type) {
case x509_entry: ASN.1Cert;
case precert_entry: PreCert;
} signed_entry;
CtExtensions extensions;
} TimestampedEntry;
struct {
Version version;
MerkleLeafType leaf_type;
select (leaf_type) {
case timestamped_entry: TimestampedEntry;
}
} MerkleTreeLeaf;
</artwork>
</figure>
<t>
Here <spanx style="verb">version</spanx> is the version of the protocol the MerkleTreeLeaf corresponds to. This version is v1.
</t>
<t>
<spanx style="verb">leaf_type</spanx> is the type of the leaf input. Currently, only <spanx style="verb">timestamped_entry</spanx> (corresponding to an SCT) is defined. Future revisions of this protocol version may add new MerkleLeafType types. <xref target="client_messages"/> explains how clients should handle unknown leaf types.
</t>
<t>
<spanx style="verb">timestamp</spanx> is the timestamp of the corresponding SCT issued for this certificate.
</t>
<t>
<spanx style="verb">signed_entry</spanx> is the <spanx style="verb">signed_entry</spanx> of the corresponding SCT.
</t>
<t>
<spanx style="verb">extensions</spanx> are <spanx style="verb">extensions</spanx> of the corresponding SCT.
</t>
<t>
The leaves of the Merkle Tree are the leaf hashes of the corresponding <spanx style="verb">MerkleTreeLeaf</spanx> structures.
</t>
</section>
<section title="Signed Tree Head">
<t>
Every time a log appends new entries to the tree, the log SHOULD sign the corresponding tree hash and tree information (see the corresponding Signed Tree Head client message in <xref target="fetch_sth"/>). The signature for that data is structured as follows:
</t>
<t>
<figure>
<artwork>
digitally-signed struct {
Version version;
SignatureType signature_type = tree_hash;
uint64 timestamp;
uint64 tree_size;
opaque sha256_root_hash[32];
} TreeHeadSignature;
</artwork>
</figure>
</t>
<t>
<spanx style="verb">version</spanx> is the version of the protocol the TreeHeadSignature conforms to. This version is v1.
</t>
<t>
<spanx style="verb">timestamp</spanx> is the current time. The timestamp MUST be at least as recent as the most recent SCT timestamp in the tree. Each subsequent timestamp MUST be more recent than the timestamp of the previous update.
</t>
<t>
<spanx style="verb">tree_size</spanx> equals the number of entries in the new tree.
</t>
<t>
<spanx style="verb">sha256_root_hash</spanx> is the root of the Merkle Hash Tree.
</t>
<t>Each log MUST produce on demand a Signed Tree Head that is no older than the Maximum Merge Delay. In the unlikely event that it receives no new submissions during an MMD period, the log SHALL sign the same Merkle Tree Hash with a fresh timestamp.
</t>
</section>
</section>
<section title="Log Client Messages" anchor="client_messages">
<t>
Messages are sent as HTTPS GET or POST requests. Parameters for POSTs and all responses are encoded as <xref target="RFC4627">JSON objects</xref>. Parameters for GETs are encoded as order independent key/value URL parameters, using the "application/x-www-form-urlencoded" format described in the <xref target="HTML401">"HTML 4.01 Specification"</xref>. Binary data is <xref target="RFC4648">base64 encoded</xref> as specified in the individual messages.
</t>
<t>
Note that JSON objects and URL parameters may contain fields not specified here. These extra fields should be ignored.
</t>
<t>
The <log server> prefix can include a path as well as a server name and a port.
</t>
<t>
In general, where needed, the <spanx style="verb">version</spanx> is v1 and the <spanx style="verb">id</spanx> is the log id for the log server queried.
</t>
<t>
Any errors will be returned as HTTP 4xx or 5xx responses, with human readable error messages.
</t>
<section title="Add Chain to Log" anchor="sct">
<t>
POST https://<log server>/ct/v1/add-chain
</t>
<t>
Inputs
<list style="hanging">
<t hangText="chain">
An array of base64 encoded certificates. The first element is the end entity certificate, the second chains to the first and so on to the last, which is either the root certificate or a certificate that chains to a known root certificate.
</t>
</list>
</t>
<t>
Outputs
<list style="hanging">
<t hangText="sct_version">
The version of the SignedCertificateTimestamp structure, in decimal. A compliant v1 implementation MUST NOT expect this to be 0 (i.e., v1).
</t>
<t hangText="id">
The log ID, base64 encoded. Since log clients who request an SCT for inclusion in TLS handshakes are not required to verify it, we do not assume they know the ID of the log.
</t>
<t hangText="timestamp">
The SCT timestamp, in decimal.
</t>
<t hangText="extensions">
An opaque type for future expansion. It is likely that not all participants will need to understand data in this field. Logs should set this to the empty string. Clients should decode the base64 encoded data and include it in the SCT.
</t>
<t hangText="signature">
The SCT signature, base64 encoded.
</t>
</list>
If the <spanx style="verb">sct_version</spanx> is not v1, then a v1 client may be unable to verify the signature. It MUST NOT construe this as an error. [Note: log clients don't need to be able to verify this structure, only TLS clients do - if we were to serve the structure binary, then we could completely change it without requiring an upgrade to v1 clients].
</t>
</section>
<section title="Add PreCertChain to Log">
<t>
POST https://<log server>/ct/v1/add-pre-chain
</t>
<t>
Inputs
<list style="hanging">
<t hangText="chain">
An array of base64 encoded precertificates. The first element is the end entity certificate, the second chains to the first and so on to the last, which is either the root certificate or a certificate that chains to a known root certificate.
</t>
</list>
</t>
<t>
Outputs are the same as <xref target="sct"/>.
</t>
</section>
<section title="Retrieve Latest Signed Tree Head" anchor="fetch_sth">
<t>
GET https://<log server>/ct/v1/get-sth
</t>
<t>
No inputs.
</t>
<t>
Outputs
<list style="hanging">
<t hangText="tree_size">
The size of the tree, in entries, in decimal.
</t>
<t hangText="timestamp">
The timestamp, in decimal.
</t>
<t hangText="sha256_root_hash">
The Merkle Tree Hash of the tree, in base64.
</t>
<t hangText="tree_head_signature">
A TreeHeadSignature for the above data.
</t>
</list>
</t>
</section>
<section title="Retrieve Merkle Consistency Proof between two Signed Tree Heads" anchor="fetch_consistency">
<t>
GET https://<log server>/ct/v1/get-sth-consistency
</t>
<t>
Inputs
<list style="hanging">
<t hangText="first">
The tree_size of the first tree, in decimal.
</t>
<t hangText="second">
The tree_size of the second tree, in decimal.
</t>
</list>
Both tree sizes must be from existing v1 STHs (Signed Tree Heads).
</t>
<t>
Outputs
<list style="hanging">
<t hangText="consistency">
An array of Merkle tree nodes, base64 encoded.
</t>
</list>
Note that no signature is required on this data, as it is used to verify an STH, which is signed.
</t>
</section>
<section title="Retrieve Merkle Audit Proof from Log by Leaf Hash" anchor="fetch_proof">
<t>
GET https://<log server>/ct/v1/get-proof-by-hash
</t>
<t>
Inputs
<list style="hanging">
<t hangText="hash">
A base64 encoded v1 leaf hash.
</t>
<t hangText="tree_size">
The tree_size of the tree to base the proof on, in decimal.
</t>
</list>
The <spanx style="verb">hash</spanx> must be calculated as defined in <xref target="tree"/>. The <spanx style="verb">tree_size</spanx> must designate an existing v1 STH.
</t>
<t>
Outputs
<list style="hanging">
<t hangText="leaf_index">
The 0-based index of the end entity corresponding to the <spanx style="verb">hash</spanx> parameter.
</t>
<t hangText="audit_path">
An array of base64 encoded Merkle tree nodes proving the inclusion of the chosen certificate.
</t>
</list>
</t>
</section>
<section title="Retrieve Entries from Log" anchor="fetch_entries">
<t>
GET https://<log server>/ct/v1/get-entries
</t>
<t>
Inputs
<list style="hanging">
<t hangText="start">
0-based index of first entry to retrieve, in decimal.
</t>
<t hangText="end">
0-based index of last entry to retrieve, in decimal.
</t>
</list>
</t>
<t>
Outputs
<list style="hanging">
<t hangText="entries">
An array of objects, each consisting of
<list style="hanging">
<t hangText="leaf_input">
The base64-encoded MerkleTreeLeaf structure.
</t>
<t hangText="extra_data">
The base64-encoded unsigned data pertaining to the log entry. In the case of an X509ChainEntry, this is the <spanx style="verb">certificate_chain</spanx>. In the case of a PrecertChainEntry, this is the whole <spanx style="verb">PrecertChainEntry</spanx>.
</t>
</list>
</t>
</list>
</t>
<t>
Note that this message is not signed - the retrieved data can be verified by constructing the Merkle Tree Hash corresponding to a retrieved STH. All leaves MUST be v1. However, a compliant v1 client MUST NOT construe an unrecognized MerkleLeafType or LogEntryType value as an error. This means it may be unable to parse some entries, but note that each client can inspect the entries it does recognize, as well as verify the integrity of the data by treating unrecognized leaves as opaque input to the tree.
</t>
<t>
The <spanx style="verb">start</spanx> and <spanx style="verb">end</spanx> parameters SHOULD be within the range 0 <= x < <spanx style="verb">tree_size</spanx> as returned by <spanx style="verb">get-sth</spanx> in <xref target="fetch_sth"/>.
</t>
<t>
Logs MAY honour requests where 0 <= <spanx style="verb">start</spanx> < <spanx style="verb">tree_size</spanx>, and <spanx style="verb">end</spanx> >= <spanx style="verb">tree_size</spanx> by returning a partial response covering only the valid entries in the specified range. Note that the following restriction may also apply:
</t>
<t>
Logs MAY restrict the number of entries which can be retrieved per <spanx style="verb">get-entries</spanx> request. If a client requests more than the permitted number of entries, the log SHALL return the maximum number of entries permissible. These entries SHALL be sequential beginning with the entry specified by <spanx style="verb">start</spanx>.
</t>
</section>
<section title="Retrieve Accepted Root Certificates">
<t>
GET https://<log server>/ct/v1/get-roots
</t>
<t>
No inputs.
</t>
<t>
Outputs
<list style="hanging">
<t hangText="certificates">
An array of base64 encoded root certificates that are acceptable to the log.
</t>
</list>
</t>
</section>
<section title="Retrieve Entry+Merkle Audit Proof from Log">
<t>
GET https://<log server>/ct/v1/get-entry-and-proof
</t>
<t>
Inputs
<list style="hanging">
<t hangText="leaf_index">
The index of the desired entry.
</t>
<t hangText="tree_size">
The tree_size of the tree for which the proof is desired.
</t>
</list>
The tree size must designate an existing STH.
</t>
<t>
Outputs
<list style="hanging">
<t hangText="leaf_input">
The base64-encoded MerkleTreeLeaf structure.
</t>
<t hangText="extra_data">
The base64-encoded unsigned data, same as in <xref target='fetch_entries'/>.
</t>
<t hangText="audit_path">
An array of base64 encoded Merkle tree nodes proving the inclusion of the chosen certificate.
</t>
</list>
This API is probably only useful for debugging.
</t>
</section>
</section>
<section title="Clients">
<t>
There are various different functions clients of logs might perform. We describe here some typical clients and how they could function. Any inconsistency may be used as evidence that a log has not behaved correctly, and the signatures on the data structures prevent the log from denying that misbehaviour.
</t>
<t>
All clients should gossip with each other, exchanging STHs at least: this is all that is required to ensure that they all have a consistent view. The exact mechanism for gossip will be described in an separate document, but it is expected there will be a variety.
</t>
<section title="Submitters">
<t>
Submitters submit certificates or precertificates to the log as described above. They may go on to use the returned SCT to construct a certificate or use it directly in a TLS handshake.
</t>
</section>
<section title="TLS Client">
<t>
TLS clients are not directly clients of the log, but they receive SCTs alongside or in server certificates. In addition to normal validation of the certificate and its chain, they should validate the SCT by computing the signature input from the SCT data as well as the certificate, and verifying the signature, using the corresponding log's public key. Note that this document does not describe how clients obtain the logs' public keys.
</t>
<t>
TLS clients MUST reject SCTs whose timestamp is in the future.
</t>
</section>
<section title="Monitor">
<t>
Monitors watch logs and check that they behave correctly. They also watch for certificates of interest.
</t>
<t>
A monitor needs to, at least, inspect every new entry in each log it watches. It may also want to keep copies of entire logs. In order to do this, it should follow these steps for each log:
<list style="numbers">
<t>
Fetch the current STH using <xref target="fetch_sth"/>.
</t>
<t>
Verify the STH signature.
</t>
<t>
Fetch all the entries in the tree corresponding to the STH using <xref target="fetch_entries"/>.
</t>
<t>
Confirm that the tree made from the fetched entries produces the same hash as that in the STH.
</t>
<t anchor="monitor_loop">
Fetch the current STH using <xref target="fetch_sth"/>. Repeat until STH changes.
</t>
<t>
Verify the STH signature.
</t>
<t>
Fetch all the new entries in the tree corresponding to the STH using <xref target="fetch_entries"/>. If they remain unavailable for an extended period, then this should be viewed as misbehaviour on the part of the log.
</t>
<t>
Either:
<list style="numbers">
<t>
Verify that the updated list of all entries generates a tree with the same hash as the new STH.
</t>
</list>
Or, if it is not keeping all log entries:
<list style="numbers">
<t>
Fetch a consistency proof for the new STH with the previous STH using <xref target="fetch_consistency"/>.
</t>
<t>
Verify the consistency proof.
</t>
<t>
Verify that the new entries generate the corresponding elements in the consistency proof.
</t>
</list>
</t>
<t>
Go to Step <xref target="monitor_loop" format='counter'/>.
</t>
</list>
</t>
</section>
<section title="Auditor">
<t>
Auditors take partial information about a log as input and verify that this information is consistent with other partial information they have. An auditor might be an integral component of a TLS client, it might be a standalone service or it might be a secondary function of a monitor.
</t>
<t>
Any pair of STHs from the same log can be verified by requesting a consistency proof using <xref target="fetch_consistency"/>.
</t>
<t>
A certificate accompanied by an SCT can be verified against any STH dated after the SCT timestamp + the Maximum Merge Delay by requesting a Merkle Audit Proof using <xref target="fetch_proof"/>.
</t>
<t>
Auditors can fetch STHs from time to time of their own accord, of course, using <xref target="fetch_sth"/>.
</t>
</section>
</section>
<section title="IANA Considerations">
<t>
IANA is requested to allocate an RFC 5246 ExtensionType Value for the CTS TLS extension. The Extension name is "signed_certificate_timestamp".
</t>
</section>
<section title="Security Considerations">
<t>
With CAs, logs, and servers performing the actions described here, TLS clients can use logs and signed timestamps to reduce the likelihood that they will accept misissued certificates. If a server presents a valid signed timestamp for a certificate, then the client knows that the certificate has been published in a log. From this, the client knows that the subject of the certificate has had some time to notice the misissue and take some action, such as asking a CA to revoke a misissued certificate. A signed timestamp is not a guarantee that the certificate is not misissued, since the subject of the certificate might not have checked the logs or the CA might have refused to revoke the certificate.
</t>
<t>
In addition, if TLS clients will not accept unlogged certificates, then site owners will have a greater incentive to submit certificates to logs, possibly with the assistance of their CA, increasing the overall transparency of the system.
</t>
<section title="Misissued Certificates">
<t>
Misissued certificates that have not been publicly logged, and thus do not have a valid SCT, will be rejected by TLS clients. Misissued certificates that do have an SCT from a log will appear in that public log within the Maximum Merge Delay, assuming the log is operating correctly. Thus, the maximum period of time during which a misissued certificate can be used without being available for audit is the MMD.
</t>
</section>
<section title="Detection of Misissue">
<t>
The logs do not themselves detect misissued certificates, they rely instead on interested parties, such as domain owners, to monitor them and take corrective action when a misissue is detected.
</t>
</section>
<section title="Misbehaving logs">
<t>
A log can misbehave in two ways: (1), by failing to incorporate a certificate with an SCT in the Merkle Tree within the MMD; and (2), by violating its append-only property by presenting two different, conflicting views of the Merkle Tree at different times and/or to different parties. Both forms of violation will be promptly and publicly detectable.
</t>
<t>
Violation of the MMD contract is detected by log clients requesting a Merkle audit proof for each observed SCT. These checks can be asynchronous, and need only be done once per each certificate. In order to protect the clients' privacy, these checks need not reveal the exact certificate to the log. Clients can instead request the proof from a trusted auditor (since anyone can compute the audit proofs from the log), or request Merkle proofs for a batch of certificates around the SCT timestamp.
</t>
<t>
Violation of the append-only property is detected by global gossiping, i.e., everyone auditing logs comparing their versions of the latest signed tree heads. As soon as two conflicting signed tree heads for the same log are detected, this is cryptographic proof of that log's misbehaviour.
</t>
</section>
</section>
<section title="Efficiency Considerations">
<t>
The Merkle tree design serves the purpose of keeping communication overhead low.
</t>
<t>
Auditing logs for integrity does not require third parties to maintain a copy of each entire log. The Signed Tree Heads can be updated as new entries become available, without recomputing entire trees. Third party auditors need only fetch the Merkle consistency proofs against a log's existing STH to efficiently verify the append-only property of updates to their Merkle Trees, without auditing the entire tree.
</t>
</section>
<section title="Future Changes">
<t>
This section lists things we might address in a Standards Track version of this document.
</t>
<t>
Rather than forcing a log operator to create a new log in order to change the log signing key, we may allow some key roll mechanism.
</t>
<t>
We may add hash and signing algorithm agility.
</t>
<t>
We may describe some gossip protocols.
</t>
</section>
<section title="Acknowledgements">
<t>
The authors would like to thank Erwann Abelea, Robin Alden, Al Cutter, Francis Dupont, Stephen Farrell, Brad Hill, Jeff Hodges, Paul Hoffman, Jeffrey Hutzelman, SM, Alexey Melnikov, Chris Palmer, Trevor Perrin, Ryan Sleevi, Rob Stradling, Carl Wallace for their valuable contributions.
</t>
</section>
</middle>
<back>
<references>
<reference anchor='RFC2119'>
<front>
<title abbrev='RFC Key Words'>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='Scott Bradner'>
<organization>Harvard University</organization>
<address>
<postal>
<street>1350 Mass. Ave.</street>
<street>Cambridge</street>
<street>MA 02138</street></postal>
<phone>- +1 617 495 3864</phone>
<email>[email protected]</email></address></author>
<date year='1997' month='March' />
<area>General</area>
<keyword>keyword</keyword>
<abstract>
<t>
In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. Authors who follow these guidelines should incorporate this phrase near the beginning of their document:
<list>
<t>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
</t>
</list>
</t>
<t>
Note that the force of these words is modified by the requirement
level of the document in which they are used.
</t>
</abstract>
</front>
<seriesInfo name='BCP' value='14' />
<seriesInfo name='RFC' value='2119' />
<format type='TXT' octets='4723' target='http://www.rfc-editor.org/rfc/rfc2119.txt' />
<format type='HTML' octets='17970' target='http://xml.resource.org/public/rfc/html/rfc2119.html' />
<format type='XML' octets='5777' target='http://xml.resource.org/public/rfc/xml/rfc2119.xml' />
</reference>
<reference anchor="RFC2560">
<front>
<title abbrev="PKIX OCSP">
X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP
</title>
<author initials="M." surname="Myers" fullname="Michael Myers">
<organization>VeriSign, Inc.</organization>
<address>
<postal>
<street>1350 Charleston Road</street>
<city>Mountain View</city>
<region>CA</region>
<code>94043</code>
<country>US</country>
</postal>
<email>[email protected]</email>
</address>
</author>
<author initials="R." surname="Ankney" fullname="Rich Ankney">
<organization>CertCo, LLC</organization>
<address>
<postal>
<street>13506 King Charles Dr.</street>
<city>Chantilly</city>
<region>VA</region>
<code>20151</code>
<country>US</country>
</postal>
<email>[email protected]</email>
</address>
</author>
<author initials="A." surname="Malpani" fullname="Ambarish Malpani">
<organization>ValiCert, Inc.</organization>
<address>
<postal>
<street>1215 Terra Bella Avenue</street>
<city>Mountain View</city>
<region>CA</region>
<code>94043</code>
<country>US</country>
</postal>
<phone>+1 650 567 5457</phone>
<email>[email protected]</email>
</address>
</author>
<author initials="S." surname="Galperin" fullname="Slava Galperin">
<organization>My CFO, Inc.</organization>
<address>
<postal>
<street>1945 Charleston Road</street>
<city>Mountain View</city>