File: rfc7107.html

package info (click to toggle)
doc-rfc 20230121-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 1,609,944 kB
file content (1005 lines) | stat: -rw-r--r-- 77,562 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
<pre>Internet Engineering Task Force (IETF)                        R. Housley
Request for Comments: 7107                                Vigil Security
Category: Informational                                     January 2014
ISSN: 2070-1721


 <span class="h1">Object Identifier Registry for the S/MIME Mail Security Working Group</span>

Abstract

   When the S/MIME Mail Security Working Group was chartered, an object
   identifier arc was donated by RSA Data Security for use by that
   working group.  This document describes the object identifiers that
   were assigned in that donated arc, transfers control of that arc to
   IANA, and establishes IANA allocation policies for any future
   assignments within that arc.

Status of This Memo

   This document is not an Internet Standards Track specification; it is
   published for informational purposes.

   This document is a product of the Internet Engineering Task Force
   (IETF).  It represents the consensus of the IETF community.  It has
   received public review and has been approved for publication by the
   Internet Engineering Steering Group (IESG).  Not all documents
   approved by the IESG are a candidate for any level of Internet
   Standard; see <a href="./rfc5741#section-2">Section&nbsp;2 of RFC 5741</a>.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   <a href="http://www.rfc-editor.org/info/rfc7107">http://www.rfc-editor.org/info/rfc7107</a>.

Copyright Notice

   Copyright (c) 2014 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Simplified BSD License text as described in Section 4.e of
   the Trust Legal Provisions and are provided without warranty as
   described in the Simplified BSD License.




<span class="grey">Housley                       Informational                     [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


Table of Contents

   <a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
   <a href="#section-2">2</a>. Subordinate Object Identifier Arcs ..............................<a href="#page-3">3</a>
   <a href="#section-3">3</a>. IANA Considerations .............................................<a href="#page-4">4</a>
      <a href="#section-3.1">3.1</a>. Update to "SMI Security for Mechanism Codes" Registry ......<a href="#page-4">4</a>
      <a href="#section-3.2">3.2</a>. "SMI Security for S/MIME Mail Security" Registry ...........<a href="#page-4">4</a>
      <a href="#section-3.3">3.3</a>. "SMI Security for S/MIME Module Identifier" Registry .......<a href="#page-5">5</a>
      <a href="#section-3.4">3.4</a>. "SMI Security for S/MIME CMS Content Type" Registry ........<a href="#page-6">6</a>
      <a href="#section-3.5">3.5</a>. "SMI Security for S/MIME Attributes" Registry ..............<a href="#page-7">7</a>
      <a href="#section-3.6">3.6</a>. "SMI Security for S/MIME Algorithms" Registry ..............<a href="#page-9">9</a>
      3.7. "SMI Security for S/MIME Certificate Distribution
           Mechanisms" Registry .......................................<a href="#page-9">9</a>
      3.8. "SMI Security for S/MIME Signature Policy
           Qualifier" Registry .......................................<a href="#page-10">10</a>
      3.9. "SMI Security for S/MIME Commitment Type
           Identifier" Registry ......................................<a href="#page-10">10</a>
      3.10. "SMI Security for S/MIME Test Security Policies"
            Registry .................................................<a href="#page-10">10</a>
      3.11. "SMI Security for S/MIME Control Attributes for
            Symmetric Key Distribution" Registry .....................<a href="#page-11">11</a>
      3.12. "SMI Security for S/MIME Signature Type
            Identifiers" Registry ....................................<a href="#page-11">11</a>
      3.13. "SMI Security for S/MIME X.400 Encoded Information
            Types (EIT) for S/MIME objects" Registry .................<a href="#page-12">12</a>
      3.14. "SMI Security for S/MIME Capabilities (other than
            cryptographic algorithms)" Registry ......................<a href="#page-12">12</a>
      3.15. "SMI Security for S/MIME Portable Symmetric Key
            Container (PSKC) Attributes" Registry ....................<a href="#page-12">12</a>
   <a href="#section-4">4</a>. Security Considerations ........................................<a href="#page-13">13</a>
   <a href="#section-5">5</a>. References .....................................................<a href="#page-13">13</a>
      <a href="#section-5.1">5.1</a>. Normative References ......................................<a href="#page-13">13</a>
      <a href="#section-5.2">5.2</a>. Informative References ....................................<a href="#page-14">14</a>
   <a href="#section-6">6</a>. Acknowledgements ...............................................<a href="#page-18">18</a>

<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>

   When the S/MIME Mail Security Working Group was chartered, an object
   identifier arc was donated by RSA Data Security for use by that
   working group.  These object identifiers are primarily used with
   Abstract Syntax Notation One (ASN.1) [<a href="#ref-ASN1-88" title="&quot;Specification of Abstract Syntax Notation One (ASN.1)&quot;">ASN1-88</a>] [<a href="#ref-ASN1-08" title="&quot;Abstract Syntax Notation One (ASN.1): Specification of basic notation&quot;">ASN1-08</a>].  The ASN.1
   specifications continue to evolve, but object identifiers can be used
   with any and all versions of ASN.1.

   The S/MIME object identifier arc is:

      id-smime OBJECT IDENTIFIER ::= { iso(1) member-body(2)
                  us(840) rsadsi(113549) pkcs(1) pkcs9(9) 16 }



<span class="grey">Housley                       Informational                     [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   This document describes the object identifiers that were assigned in
   that donated arc, transfers control of that arc to IANA, and
   establishes IANA allocation policies for any future assignments
   within that arc.

<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>.  Subordinate Object Identifier Arcs</span>

   Thirteen subordinate object identifier arcs were used, numbered from
   zero to twelve.  They were assigned as follows:

      -- ASN.1 modules
      id-mod  OBJECT IDENTIFIER ::= { id-smime  0 }

      -- Cryptographic Message Syntax (CMS) content types
      id-ct   OBJECT IDENTIFIER ::= { id-smime  1 }

      -- attributes
      id-aa   OBJECT IDENTIFIER ::= { id-smime  2 }

      -- algorithm identifiers
      id-alg  OBJECT IDENTIFIER ::= { id-smime  3 }

      -- certificate distribution
      id-cd   OBJECT IDENTIFIER ::= { id-smime  4 }

      -- signature policy qualifier
      id-spq  OBJECT IDENTIFIER ::= { id-smime  5 }

      -- commitment type identifier
      id-cti  OBJECT IDENTIFIER ::= { id-smime  6 }

      -- test security policies
      id-tsp  OBJECT IDENTIFIER ::= { id-smime  7 }

      -- symmetric key distribution control attributes
      id-skd  OBJECT IDENTIFIER ::= { id-smime  8 }

      -- signature type identifier
      id-sti  OBJECT IDENTIFIER ::= { id-smime  9 }

      -- encoded information types
      id-eit  OBJECT IDENTIFIER ::= { id-smime 10 }

       -- S/MIME capabilities
      id-cap  OBJECT IDENTIFIER ::= { id-smime 11 }

      -- PSKC attributes
      id-pskc OBJECT IDENTIFIER ::= { id-smime 12 }



<span class="grey">Housley                       Informational                     [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   The values assigned in each of these subordinate object identifier
   arcs are discussed in the next section.

<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>.  IANA Considerations</span>

   IANA is asked to update one registry table and create fourteen
   additional tables.

   Updates to the new tables require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].  The expert is expected to
   ensure that any new values are strongly related to the work that was
   done by the S/MIME Mail Security Working Group; examples include
   content types, attributes, and identifiers for algorithms used with
   S/MIME and CMS.  Object identifiers for other purposes should not be
   assigned in this arc.

<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>.  Update to "SMI Security for Mechanism Codes" Registry</span>

   The "SMI Security for Mechanism Codes" table generally contains
   entries with a positive integer value, but the value donated by RSA
   Data Security cannot be described in this manner.  An accompanying
   table is needed with this entry:

      OID Value              Name    Description           References
      ---------------------  -----  ---------------------  ----------
      1.2.840.113549.1.9.16  smime   S/MIME Mail Security  This RFC

<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>.  "SMI Security for S/MIME Mail Security" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME Mail
   Security (1.2.840.113549.1.9.16)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      0        Module identifiers                      This <a href="./rfc1">RFC</a>
      <a href="./rfc1">1</a>        CMS content types                       This <a href="./rfc2">RFC</a>
      <a href="./rfc2">2</a>        Attributes                              This <a href="./rfc3">RFC</a>
      <a href="./rfc3">3</a>        Algorithm identifiers                   This <a href="./rfc4">RFC</a>
      <a href="./rfc4">4</a>        Certificate distribution                This <a href="./rfc5">RFC</a>
      <a href="./rfc5">5</a>        Signature policy qualifiers             This <a href="./rfc6">RFC</a>
      <a href="./rfc6">6</a>        Commitment type identifiers             This <a href="./rfc7">RFC</a>
      <a href="./rfc7">7</a>        Test security policies                  This <a href="./rfc8">RFC</a>
      <a href="./rfc8">8</a>        Symmetric key dist ctrl attrs           This <a href="./rfc9">RFC</a>
      <a href="./rfc9">9</a>        Signature type identifiers              This <a href="./rfc10">RFC</a>
      <a href="./rfc10">10</a>       Encoded information types               This <a href="./rfc11">RFC</a>
      <a href="./rfc11">11</a>       S/MIME capabilities                     This <a href="./rfc12">RFC</a>
      <a href="./rfc12">12</a>       PSKC attributes                         This RFC




<span class="grey">Housley                       Informational                     [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>.  "SMI Security for S/MIME Module Identifier" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Module Identifier (1.2.840.113549.1.9.16.0)" table with three
   columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-mod-cms                              [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      2        id-mod-ess                              [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      3        id-mod-oid                   Reserved and Obsolete
      4        id-mod-msg-v3                           [<a href="./rfc2633" title="&quot;S/MIME Version 3 Message Specification&quot;">RFC2633</a>]
      5        id-mod-ets-eSignature-88                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      6        id-mod-ets-eSignature-97                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      7        id-mod-ets-eSigPolicy-88                [<a href="./rfc3125" title="&quot;Electronic Signature Policies&quot;">RFC3125</a>]
      8        id-mod-ets-eSigPolicy-97                [<a href="./rfc3125" title="&quot;Electronic Signature Policies&quot;">RFC3125</a>]
      9        id-mod-certdist              Reserved and Obsolete
      10       id-mod-domsec                           [<a href="./rfc3183" title="&quot;Domain Security Services using S/MIME&quot;">RFC3183</a>]
      11       id-mod-compress                         [<a href="./rfc3274" title="&quot;Compressed Data Content Type for Cryptographic Message Syntax (CMS)&quot;">RFC3274</a>]
      12       id-mod-symkeydist                       [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      13       id-mod-cek-reuse                        [<a href="./rfc3185" title="&quot;Reuse of CMS Content Encryption Keys&quot;">RFC3185</a>]
      14       id-mod-cms-2001                         [<a href="./rfc3369" title="&quot;Cryptographic Message Syntax (CMS)&quot;">RFC3369</a>]
      15       id-mod-v1AttrCert                       [<a href="./rfc3369" title="&quot;Cryptographic Message Syntax (CMS)&quot;">RFC3369</a>]
      16       id-mod-cmsalg-2001                      [<a href="./rfc3370" title="&quot;Cryptographic Message Syntax (CMS) Algorithms&quot;">RFC3370</a>]
      17       id-mod-cms-pwri-88                      [<a href="./rfc3211" title="&quot;Password-based Encryption for CMS&quot;">RFC3211</a>]
      18       id-mod-cms-pwri-97                      [<a href="./rfc3211" title="&quot;Password-based Encryption for CMS&quot;">RFC3211</a>]
      19       id-mod-cms-aes                          [<a href="./rfc3565" title="&quot;Use of the Advanced Encryption Standard (AES) Encryption Algorithm in Cryptographic Message Syntax (CMS)&quot;">RFC3565</a>]
      20       id-mod-cms-rsaes-oaep                   [<a href="./rfc3560" title="&quot;Use of the RSAES-OAEP Key Transport Algorithm in Cryptographic Message Syntax (CMS)&quot;">RFC3560</a>]
      21       id-mod-msg-v3dot1                       [<a href="./rfc3851" title="&quot;Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Message Specification&quot;">RFC3851</a>]
      22       id-mod-cms-firmware-wrap                [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      23       id-mod-cms-camellia                     [<a href="./rfc3657" title="&quot;Use of the Camellia Encryption Algorithm in Cryptographic Message Syntax (CMS)&quot;">RFC3657</a>]
      24       id-mod-cms-2004                         [<a href="./rfc3852" title="&quot;Cryptographic Message Syntax (CMS)&quot;">RFC3852</a>]
      25       id-mod-cms-seed                         [<a href="#ref-Err3865" title="RFC 4010">Err3865</a>]
      26       id-mod-contentCollection                [<a href="./rfc4073" title="&quot;Protecting Multiple Contents with the Cryptographic Message Syntax (CMS)&quot;">RFC4073</a>]
      27       id-mod-binarySigningTime                [<a href="./rfc4049" title="&quot;BinaryTime: An Alternate Format for Representing Date and Time in ASN.1&quot;">RFC4049</a>]
      28       id-mod-ets-eSignature-explicitSyntax88  [<a href="./rfc5126" title="&quot;CMS Advanced Electronic Signatures (CAdES)&quot;">RFC5126</a>]
      29       id-mod-ets-eSignature-explicitSyntax97  [<a href="./rfc5126" title="&quot;CMS Advanced Electronic Signatures (CAdES)&quot;">RFC5126</a>]
      30       id-mod-ess-2006                         [<a href="./rfc5035" title="&quot;Enhanced Security Services (ESS) Update: Adding CertID Algorithm Agility&quot;">RFC5035</a>]
      31       id-mod-cms-authEnvelopedData            [<a href="./rfc5083" title="&quot;Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type&quot;">RFC5083</a>]
      32       id-mod-cms-aes-ccm-and-gcm              [<a href="./rfc5084" title="&quot;Using AES-CCM and AES-GCM Authenticated Encryption in the Cryptographic Message Syntax (CMS)&quot;">RFC5084</a>]
      33       id-mod-symmetricKeyPkgV1                [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      34       id-mod-multipleSig-2008                 [<a href="./rfc5752" title="&quot;Multiple Signatures in Cryptographic Message Syntax (CMS)&quot;">RFC5752</a>]
      35       id-mod-timestampedData                  [<a href="./rfc5544" title="&quot;Syntax for Binding Documents with Time- Stamps&quot;">RFC5544</a>]
      36       id-mod-symkeydist-02                    [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      37       id-mod-cmsalg-2001-02                   [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]



<span class="grey">Housley                       Informational                     [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


      38       id-mod-cms-aes-02                       [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      39       id-mod-msg-v3dot1-02                    [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      40       id-mod-cms-firmware-wrap-02             [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      41       id-mod-cms-2004-02                      [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      42       id-mod-ess-2006-02                      [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      43       id-mod-cms-authEnvelopedData-02         [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      44       id-mod-cms-aes-ccm-gcm-02               [<a href="./rfc5911" title="&quot;New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC5911</a>]
      45       id-mod-cms-ecc-alg-2009-88              [<a href="./rfc5753" title="&quot;Use of Elliptic Curve Cryptography (ECC) Algorithms in Cryptographic Message Syntax (CMS)&quot;">RFC5753</a>]
      46       id-mod-cms-ecc-alg-2009-02              [<a href="./rfc5753" title="&quot;Use of Elliptic Curve Cryptography (ECC) Algorithms in Cryptographic Message Syntax (CMS)&quot;">RFC5753</a>]
      47       id-mod-aesKeyWrapWithPad-88             [<a href="./rfc5649" title="&quot;Advanced Encryption Standard (AES) Key Wrap with Padding Algorithm&quot;">RFC5649</a>]
      48       id-mod-aesKeyWrapWithPad-02             [<a href="./rfc5649" title="&quot;Advanced Encryption Standard (AES) Key Wrap with Padding Algorithm&quot;">RFC5649</a>]
      49       id-mod-MD5-XOR-EXPERIMENT               [<a href="#ref-Err3866" title="RFC 6210">Err3866</a>]
      50       id-mod-asymmetricKeyPkgV1               [<a href="./rfc5958" title="&quot;Asymmetric Key Packages&quot;">RFC5958</a>]
      51       id-mod-encryptedKeyPkgV1                [<a href="./rfc6032" title="&quot;Cryptographic Message Syntax (CMS) Encrypted Key Package Content Type&quot;">RFC6032</a>]
      52       id-mod-cms-algorithmProtect             [<a href="./rfc6211" title="&quot;Cryptographic Message Syntax (CMS) Algorithm Identifier Protection Attribute&quot;">RFC6211</a>]
      53       id-mod-pskcAttributesModule             [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      54       id-mod-compressedDataContent            [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      55       id-mod-binSigningTime-2009              [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      56       id-mod-contentCollect-2009              [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      57       id-mod-cmsAuthEnvData-2009              [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      58       id-mod-cms-2009                         [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      59       id-mod-multipleSign-2009                [<a href="./rfc6268" title="&quot;Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)&quot;">RFC6268</a>]
      60       id-mod-rpkiManifest                     [<a href="./rfc6486" title="&quot;Manifests for the Resource Public Key Infrastructure (RPKI)&quot;">RFC6486</a>]
      61       id-mod-rpkiROA                          [<a href="./rfc6482" title="&quot;A Profile for Route Origin Authorizations (ROAs)&quot;">RFC6482</a>]
      62       id-mod-setKeyAttributeV1                [<a href="#ref-SET-KEY" title="&quot;A set-key attribute for symmetric-key packages&quot;">SET-KEY</a>]
      63       id-mod-keyPkgReceiptAndErrV2            [<a href="#ref-CMS-TYPES" title="&quot;Cryptographic Message Syntax (CMS) Key Package Receipt and Error Content Types&quot;">CMS-TYPES</a>]
      64       id-mod-mts-hashsig-2013                 [<a href="#ref-MTS-in-CMS" title="&quot;Use of the Hash-based Merkle Tree Signature (MTS) Algorithm in the Cryptographic Message Syntax (CMS)&quot;">MTS-in-CMS</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>.  "SMI Security for S/MIME CMS Content Type" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME CMS
   Content Type (1.2.840.113549.1.9.16.1)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      0        id-ct-anyContentType                    [<a href="./rfc6010" title="&quot;Cryptographic Message Syntax (CMS) Content Constraints Extension&quot;">RFC6010</a>]
      1        id-ct-receipt                           [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      2        id-ct-authData                          [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      3        id-ct-publishCert            Reserved and Obsolete
      4        id-ct-TSTInfo                           [<a href="./rfc3161" title="&quot;Internet X.509 Public Key Infrastructure Time-Stamp Protocol (TSP)&quot;">RFC3161</a>]
      5        id-ct-TDTInfo                Reserved and Obsolete
      6        id-ct-contentInfo                       [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      7        id-ct-DVCSRequestData                   [<a href="./rfc3029" title="&quot;Internet X.509 Public Key Infrastructure Data Validation and Certification Server Protocols&quot;">RFC3029</a>]
      8        id-ct-DVCSResponseData                  [<a href="./rfc3029" title="&quot;Internet X.509 Public Key Infrastructure Data Validation and Certification Server Protocols&quot;">RFC3029</a>]
      9        id-ct-compressedData                    [<a href="./rfc3274" title="&quot;Compressed Data Content Type for Cryptographic Message Syntax (CMS)&quot;">RFC3274</a>]



<span class="grey">Housley                       Informational                     [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


      10       id-ct-scvp-certValRequest               [<a href="./rfc5055" title="&quot;Server-Based Certificate Validation Protocol (SCVP)&quot;">RFC5055</a>]
      11       id-ct-scvp-certValResponse              [<a href="./rfc5055" title="&quot;Server-Based Certificate Validation Protocol (SCVP)&quot;">RFC5055</a>]
      12       id-ct-scvp-valPolRequest                [<a href="./rfc5055" title="&quot;Server-Based Certificate Validation Protocol (SCVP)&quot;">RFC5055</a>]
      13       id-ct-scvp-valPolResponse               [<a href="./rfc5055" title="&quot;Server-Based Certificate Validation Protocol (SCVP)&quot;">RFC5055</a>]
      14       id-ct-attrCertEncAttrs                  [<a href="./rfc5755" title="&quot;An Internet Attribute Certificate Profile for Authorization&quot;">RFC5755</a>]
      15       id-ct-TSReq                  Reserved and Obsolete
      16       id-ct-firmwarePackage                   [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      17       id-ct-firmwareLoadReceipt               [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      18       id-ct-firmwareLoadError                 [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      19       id-ct-contentCollection                 [<a href="./rfc4073" title="&quot;Protecting Multiple Contents with the Cryptographic Message Syntax (CMS)&quot;">RFC4073</a>]
      20       id-ct-contentWithAttrs                  [<a href="./rfc4073" title="&quot;Protecting Multiple Contents with the Cryptographic Message Syntax (CMS)&quot;">RFC4073</a>]
      21       id-ct-encKeyWithID                      [<a href="./rfc4211" title="&quot;Internet X.509 Public Key Infrastructure Certificate Request Message Format (CRMF)&quot;">RFC4211</a>]
      22       id-ct-encPEPSI               Reserved and Obsolete
      23       id-ct-authEnvelopedData                 [<a href="./rfc5083" title="&quot;Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type&quot;">RFC5083</a>]
      24       id-ct-routeOriginAuthz                  [<a href="./rfc6482" title="&quot;A Profile for Route Origin Authorizations (ROAs)&quot;">RFC6482</a>]
      25       id-ct-KP-sKeyPackage                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      26       id-ct-rpkiManifest                      [<a href="./rfc6486" title="&quot;Manifests for the Resource Public Key Infrastructure (RPKI)&quot;">RFC6486</a>]
      27       id-ct-asciiTextWithCRLF                 [<a href="./rfc5485" title="&quot;Digital Signatures on Internet-Draft Documents&quot;">RFC5485</a>]
      28       id-ct-xml                               [<a href="./rfc5485" title="&quot;Digital Signatures on Internet-Draft Documents&quot;">RFC5485</a>]
      29       id-ct-pdf                               [<a href="./rfc5485" title="&quot;Digital Signatures on Internet-Draft Documents&quot;">RFC5485</a>]
      30       id-ct-postscript                        [<a href="./rfc5485" title="&quot;Digital Signatures on Internet-Draft Documents&quot;">RFC5485</a>]
      31       id-ct-timestampedData                   [<a href="./rfc5544" title="&quot;Syntax for Binding Documents with Time- Stamps&quot;">RFC5544</a>]
      32       id-ct-ASAdjacencyAttest      Reserved and Obsolete
      33       id-ct-rpkiTrustAnchor        Reserved and Obsolete
      34       id-ct-trustAnchorList                   [<a href="./rfc5914" title="&quot;Trust Anchor Format&quot;">RFC5914</a>]
      35       id-ct-rpkiGhostbusters                  [<a href="./rfc6493" title="&quot;The Resource Public Key Infrastructure (RPKI) Ghostbusters Record&quot;">RFC6493</a>]
      36       id-ct-resourceTaggedAttest   Reserved and Obsolete

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>.  "SMI Security for S/MIME Attributes" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Attributes (1.2.840.113549.1.9.16.2)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-aa-receiptRequest                    [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      2        id-aa-securityLabel                     [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      3        id-aa-mlExpandHistory                   [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      4        id-aa-contentHint                       [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      5        id-aa-msgSigDigest                      [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      6        id-aa-encapContentType       Reserved and Obsolete
      7        id-aa-contentIdentifier                 [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      8        id-aa-macValue               Reserved and Obsolete
      9        id-aa-equivalentLabels                  [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      10       id-aa-contentReference                  [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]



<span class="grey">Housley                       Informational                     [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


      11       id-aa-encrypKeyPref                     [<a href="./rfc2633" title="&quot;S/MIME Version 3 Message Specification&quot;">RFC2633</a>]
      12       id-aa-signingCertificate                [<a href="./rfc2634" title="&quot;Enhanced Security Services for S/MIME&quot;">RFC2634</a>]
      13       id-aa-smimeEncryptCerts      Reserved and Obsolete
      14       id-aa-signatureTimeStampToken           [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      15       id-aa-ets-sigPolicyId                   [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      16       id-aa-ets-commitmentType                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      17       id-aa-ets-signerLocation                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      18       id-aa-ets-signerAttr                    [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      19       id-aa-ets-otherSigCert                  [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      20       id-aa-ets-contentTimestamp              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      21       id-aa-ets-CertificateRefs               [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      22       id-aa-ets-RevocationRefs                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      23       id-aa-ets-certValues                    [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      24       id-aa-ets-revocationValues              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      25       id-aa-ets-escTimeStamp                  [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      26       id-aa-ets-certCRLTimestamp              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      27       id-aa-ets-archiveTimeStamp              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      28       id-aa-signatureType                     [<a href="#ref-Err3757" title="RFC 3183">Err3757</a>]
      29       id-aa-dvcs-dvc                          [<a href="./rfc3029" title="&quot;Internet X.509 Public Key Infrastructure Data Validation and Certification Server Protocols&quot;">RFC3029</a>]
      30       id-aa-CEKReference                      [<a href="./rfc3185" title="&quot;Reuse of CMS Content Encryption Keys&quot;">RFC3185</a>]
      31       id-aa-CEKMaxDecrypts                    [<a href="./rfc3185" title="&quot;Reuse of CMS Content Encryption Keys&quot;">RFC3185</a>]
      32       id-aa-KEKDerivationAlg                  [<a href="./rfc3185" title="&quot;Reuse of CMS Content Encryption Keys&quot;">RFC3185</a>]
      33       id-aa-intendedRecipients     Reserved and Obsolete
      34       id-aa-cmc-unsignedData                  [<a href="./rfc5272" title="&quot;Certificate Management over CMS (CMC)&quot;">RFC5272</a>]
      35       id-aa-firmwarePackageID                 [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      36       id-aa-targetHardwareIDs                 [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      37       id-aa-decryptKeyID                      [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      38       id-aa-implCryptoAlgs                    [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      39       id-aa-wrappedFirmwareKey                [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      40       id-aa-communityIdentifiers              [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      41       id-aa-fwPkgMessageDigest                [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      42       id-aa-firmwarePackageInfo               [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      43       id-aa-implCompressAlgs                  [<a href="./rfc4108" title="&quot;Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages&quot;">RFC4108</a>]
      44       id-aa-ets-attrCertificateRefs           [<a href="./rfc5126" title="&quot;CMS Advanced Electronic Signatures (CAdES)&quot;">RFC5126</a>]
      45       id-aa-ets-attrRevocationRefs            [<a href="./rfc5126" title="&quot;CMS Advanced Electronic Signatures (CAdES)&quot;">RFC5126</a>]
      46       id-aa-binarySigningTime                 [<a href="./rfc4049" title="&quot;BinaryTime: An Alternate Format for Representing Date and Time in ASN.1&quot;">RFC4049</a>]
      47       id-aa-signingCertificateV2              [<a href="./rfc5035" title="&quot;Enhanced Security Services (ESS) Update: Adding CertID Algorithm Agility&quot;">RFC5035</a>]
      48       id-aa-ets-archiveTimeStampV2            [<a href="./rfc5126" title="&quot;CMS Advanced Electronic Signatures (CAdES)&quot;">RFC5126</a>]
      49       id-aa-er-internal                       [<a href="./rfc4998" title="&quot;Evidence Record Syntax (ERS)&quot;">RFC4998</a>]
      50       id-aa-er-external                       [<a href="./rfc4998" title="&quot;Evidence Record Syntax (ERS)&quot;">RFC4998</a>]
      51       id-aa-multipleSignatures                [<a href="./rfc5752" title="&quot;Multiple Signatures in Cryptographic Message Syntax (CMS)&quot;">RFC5752</a>]
      52       id-aa-cmsAlgorithmProtect               [<a href="./rfc6211" title="&quot;Cryptographic Message Syntax (CMS) Algorithm Identifier Protection Attribute&quot;">RFC6211</a>]
      53       id-aa-setKeyInformation                 [<a href="#ref-SET-KEY" title="&quot;A set-key attribute for symmetric-key packages&quot;">SET-KEY</a>]
      54       id-aa-asymmDecryptKeyID                 [<a href="./rfc7030" title="&quot;Enrollment over Secure Transport&quot;">RFC7030</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].




<span class="grey">Housley                       Informational                     [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>.  "SMI Security for S/MIME Algorithms" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Algorithms (1.2.840.113549.1.9.16.3)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-alg-ESDHwith3DES          Reserved and Obsolete
      2        id-alg-ESDHwithRC2           Reserved and Obsolete
      3        id-alg-3DESwrap              Reserved and Obsolete
      4        id-alg-RC2wrap               Reserved and Obsolete
      5        id-alg-ESDH                             [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      6        id-alg-CMS3DESwrap                      [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      7        id-alg-CMSRC2wrap                       [<a href="./rfc2630" title="&quot;Cryptographic Message Syntax&quot;">RFC2630</a>]
      8        id-alg-zLibCompress                     [<a href="./rfc3274" title="&quot;Compressed Data Content Type for Cryptographic Message Syntax (CMS)&quot;">RFC3274</a>]
      9        id-alg-PWRI-KEK                         [<a href="./rfc3211" title="&quot;Password-based Encryption for CMS&quot;">RFC3211</a>]
      10       id-alg-SSDH                             [<a href="./rfc3370" title="&quot;Cryptographic Message Syntax (CMS) Algorithms&quot;">RFC3370</a>]
      11       id-alg-HMACwith3DESwrap                 [<a href="./rfc3537" title="&quot;Wrapping a Hashed Message Authentication Code (HMAC) key with a Triple-Data Encryption Standard (DES) Key or an Advanced Encryption Standard (AES) Key&quot;">RFC3537</a>]
      12       id-alg-HMACwithAESwrap                  [<a href="./rfc3537" title="&quot;Wrapping a Hashed Message Authentication Code (HMAC) key with a Triple-Data Encryption Standard (DES) Key or an Advanced Encryption Standard (AES) Key&quot;">RFC3537</a>]
      13       id-alg-MD5-XOR-EXPERIMENT               [<a href="./rfc6210" title="&quot;Experiment: Hash Functions with Parameters in the Cryptographic Message Syntax (CMS) and S/MIME&quot;">RFC6210</a>]
      14       id-alg-rsa-kem                          [<a href="./rfc5990" title="&quot;Use of the RSA-KEM Key Transport Algorithm in the Cryptographic Message Syntax (CMS)&quot;">RFC5990</a>]
      15       id-alg-authEnc-128                      [<a href="./rfc6476" title="&quot;Using Message Authentication Code (MAC) Encryption in the Cryptographic Message Syntax (CMS)&quot;">RFC6476</a>]
      16       id-alg-authEnc-256                      [<a href="./rfc6476" title="&quot;Using Message Authentication Code (MAC) Encryption in the Cryptographic Message Syntax (CMS)&quot;">RFC6476</a>]
      17       id-alg-mts-hashsig                      [<a href="#ref-MTS-in-CMS" title="&quot;Use of the Hash-based Merkle Tree Signature (MTS) Algorithm in the Cryptographic Message Syntax (CMS)&quot;">MTS-in-CMS</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>.  "SMI Security for S/MIME Certificate Distribution Mechanisms"</span>
<span class="h3">      Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Certificate Distribution Mechanisms (1.2.840.113549.1.9.16.4)" table
   with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-cd-ldap                   Reserved and Obsolete

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].










<span class="grey">Housley                       Informational                     [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>.  "SMI Security for S/MIME Signature Policy Qualifier" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Signature Policy Qualifier (1.2.840.113549.1.9.16.5)" table with
   three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-spq-ets-uri                          [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      2        id-spq-ets-unotice                      [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a>.  "SMI Security for S/MIME Commitment Type Identifier" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Commitment Type Identifier (1.2.840.113549.1.9.16.6)" table with
   three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-cti-ets-proofOfOrigin                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      2        id-cti-ets-proofOfReceipt               [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      3        id-cti-ets-proofOfDelivery              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      4        id-cti-ets-proofOfSender                [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      5        id-cti-ets-proofOfApproval              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]
      6        id-cti-ets-proofOfCreation              [<a href="./rfc3126" title="&quot;Electronic Signature Formats for long term electronic signatures&quot;">RFC3126</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a>.  "SMI Security for S/MIME Test Security Policies" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME Test
   Security Policies (1.2.840.113549.1.9.16.7)" table with three
   columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-tsp-TEST-Amoco                       [<a href="./rfc3114" title="&quot;Implementing Company Classification Policy with the S/MIME Security Label&quot;">RFC3114</a>]
      2        id-tsp-TEST-Caterpillar                 [<a href="./rfc3114" title="&quot;Implementing Company Classification Policy with the S/MIME Security Label&quot;">RFC3114</a>]
      3        id-tsp-TEST-Whirlpool                   [<a href="./rfc3114" title="&quot;Implementing Company Classification Policy with the S/MIME Security Label&quot;">RFC3114</a>]
      4        id-tsp-TEST-Whirlpool-Categories        [<a href="./rfc3114" title="&quot;Implementing Company Classification Policy with the S/MIME Security Label&quot;">RFC3114</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].




<span class="grey">Housley                       Informational                    [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


<span class="h3"><a class="selflink" id="section-3.11" href="#section-3.11">3.11</a>.  "SMI Security for S/MIME Control Attributes for Symmetric Key</span>
<span class="h3">       Distribution" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Control Attributes for Symmetric Key Distribution
   (1.2.840.113549.1.9.16.8)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-skd-glUseKEK                         [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      2        id-skd-glDelete                         [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      3        id-skd-glAddMember                      [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      4        id-skd-glDeleteMember                   [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      5        id-skd-glRekey                          [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      6        id-skd-glAddOwner                       [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      7        id-skd-glRemoveOwner                    [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      8        id-skd-glKeyCompromise                  [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      9        id-skd-glkRefresh                       [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      10       id-skd-glFailInfo            Reserved and Obsolete
      11       id-skd-glaQueryRequest                  [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      12       id-skd-glaQueryResponse                 [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      13       id-skd-glProvideCert                    [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      14       id-skd-glManageCert                     [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]
      15       id-skd-glKey                            [<a href="./rfc5275" title="&quot;CMS Symmetric Key Management and Distribution&quot;">RFC5275</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.12" href="#section-3.12">3.12</a>.  "SMI Security for S/MIME Signature Type Identifiers" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Signature Type Identifiers (1.2.840.113549.1.9.16.9)" table with
   three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-sti-originatorSig                    [<a href="./rfc3183" title="&quot;Domain Security Services using S/MIME&quot;">RFC3183</a>]
      2        id-sti-domainSig                        [<a href="./rfc3183" title="&quot;Domain Security Services using S/MIME&quot;">RFC3183</a>]
      3        id-sti-addAttribSig                     [<a href="./rfc3183" title="&quot;Domain Security Services using S/MIME&quot;">RFC3183</a>]
      4        id-sti-reviewSig                        [<a href="./rfc3183" title="&quot;Domain Security Services using S/MIME&quot;">RFC3183</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].








<span class="grey">Housley                       Informational                    [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


<span class="h3"><a class="selflink" id="section-3.13" href="#section-3.13">3.13</a>.  "SMI Security for S/MIME X.400 Encoded Information Types (EIT)</span>
<span class="h3">       for S/MIME objects" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for X.400
   Encoded Information Types (EIT) for S/MIME objects
   (1.2.840.113549.1.9.16.10)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-eit-envelopedData                    [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      2        id-eit-signedData                       [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      3        id-eit-certsOnly                        [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      4        id-eit-signedReceipt                    [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      5        id-eit-envelopedX400                    [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      6        id-eit-signedX400                       [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]
      7        id-eit-compressedData                   [<a href="./rfc3855" title="&quot;Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400&quot;">RFC3855</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.14" href="#section-3.14">3.14</a>.  "SMI Security for S/MIME Capabilities (other than cryptographic</span>
<span class="h3">       algorithms)" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Capabilities (other than cryptographic algorithms)
   (1.2.840.113549.1.9.16.11)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-cap-preferBinaryInside               [<a href="./rfc3851" title="&quot;Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Message Specification&quot;">RFC3851</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h3"><a class="selflink" id="section-3.15" href="#section-3.15">3.15</a>.  "SMI Security for S/MIME Portable Symmetric Key Container (PSKC)</span>
<span class="h3">       Attributes" Registry</span>

   Within the SMI-numbers registry, add an "SMI Security for S/MIME
   Portable Symmetric Key Container (PSKC) Attributes
   (1.2.840.113549.1.9.16.12)" table with three columns:

      Decimal  Description                             References
      -------  --------------------------------------  ----------
      1        id-pskc-manufacturer                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      2        id-pskc-serialNo                        [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      3        id-pskc-model                           [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      4        id-pskc-issueNo                         [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      5        id-pskc-deviceBinding                   [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]



<span class="grey">Housley                       Informational                    [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


      6        id-pskc-deviceStartDate                 [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      7        id-pskc-deviceExpiryDate                [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      8        id-pskc-moduleId                        [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      9        id-pskc-keyId                           [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      10       id-pskc-algorithm                       [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      11       id-pskc-issuer                          [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      12       id-pskc-keyProfileId                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      13       id-pskc-keyReference                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      14       id-pskc-friendlyName                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      15       id-pskc-algorithmParams                 [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      16       id-pskc-counter                         [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      17       id-pskc-time                            [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      18       id-pskc-timeInterval                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      19       id-pskc-timeDrift                       [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      20       id-pskc-valueMAC                        [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      21       id-pskc-keyStartDate                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      22       id-pskc-keyExpiryDate                   [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      23       id-pskc-noOfTransactions                [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      24       id-pskc-keyUsages                       [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      25       id-pskc-pinPolicy                       [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      26       id-pskc-deviceUserId                    [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]
      27       id-pskc-keyUserId                       [<a href="./rfc6031" title="&quot;Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type&quot;">RFC6031</a>]

   Future updates to this table require both Specification Required and
   Expert Review as defined in [<a href="./rfc5226" title="">RFC5226</a>].

<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Security Considerations</span>

   This document populates an IANA registry, and it raises no new
   security considerations.  The protocols that specify these values
   include the security considerations associated with their usage.

<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  References</span>

<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>.  Normative References</span>

   [<a id="ref-ASN1-08">ASN1-08</a>]    International Telecommunication Union, "Abstract Syntax
                Notation One (ASN.1): Specification of basic notation",
                ITU-T Recommendation X.680, 2008.

   [<a id="ref-ASN1-88">ASN1-88</a>]    International Telephone and Telegraph Consultative
                Committee, "Specification of Abstract Syntax Notation
                One (ASN.1)", CCITT Recommendation X.208, 1988.

   [<a id="ref-RFC5226">RFC5226</a>]    Narten, T. and H. Alvestrand, "Guidelines for Writing an
                IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
                May 2008.




<span class="grey">Housley                       Informational                    [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>.  Informative References</span>

   [<a id="ref-CMS-TYPES">CMS-TYPES</a>]  Housley, R., "Cryptographic Message Syntax (CMS) Key
                Package Receipt and Error Content Types", Work in
                Progress, December 2013.

   [<a id="ref-Err3757">Err3757</a>]    RFC Errata, Errata ID 3757, <a href="./rfc3183">RFC 3183</a>,
                &lt;<a href="http://www.rfc-editor.org">http://www.rfc-editor.org</a>&gt;.

   [<a id="ref-Err3865">Err3865</a>]    RFC Errata, Errata ID 3865, <a href="./rfc4010">RFC 4010</a>,
                &lt;<a href="http://www.rfc-editor.org">http://www.rfc-editor.org</a>&gt;.

   [<a id="ref-Err3866">Err3866</a>]    RFC Errata, Errata ID 3866, <a href="./rfc6210">RFC 6210</a>,
                &lt;<a href="http://www.rfc-editor.org">http://www.rfc-editor.org</a>&gt;.

   [<a id="ref-MTS-in-CMS">MTS-in-CMS</a>] Housley, R., "Use of the Hash-based Merkle Tree
                Signature (MTS) Algorithm in the Cryptographic Message
                Syntax (CMS)", Work in Progress, August 2013.

   [<a id="ref-RFC2630">RFC2630</a>]    Housley, R., "Cryptographic Message Syntax", <a href="./rfc2630">RFC 2630</a>,
                June 1999.

   [<a id="ref-RFC2633">RFC2633</a>]    Ramsdell, B., Ed., "S/MIME Version 3 Message
                Specification", <a href="./rfc2633">RFC 2633</a>, June 1999.

   [<a id="ref-RFC2634">RFC2634</a>]    Hoffman, P., Ed., "Enhanced Security Services for
                S/MIME", <a href="./rfc2634">RFC 2634</a>, June 1999.

   [<a id="ref-RFC3029">RFC3029</a>]    Adams, C., Sylvester, P., Zolotarev, M., and R.
                Zuccherato, "Internet X.509 Public Key Infrastructure
                Data Validation and Certification Server Protocols",
                <a href="./rfc3029">RFC 3029</a>, February 2001.

   [<a id="ref-RFC3114">RFC3114</a>]    Nicolls, W., "Implementing Company Classification Policy
                with the S/MIME Security Label", <a href="./rfc3114">RFC 3114</a>, May 2002.

   [<a id="ref-RFC3125">RFC3125</a>]    Ross, J., Pinkas, D., and N. Pope, "Electronic Signature
                Policies", <a href="./rfc3125">RFC 3125</a>, September 2001.

   [<a id="ref-RFC3126">RFC3126</a>]    Pinkas, D., Ross, J., and N. Pope, "Electronic Signature
                Formats for long term electronic signatures", <a href="./rfc3126">RFC 3126</a>,
                September 2001.

   [<a id="ref-RFC3161">RFC3161</a>]    Adams, C., Cain, P., Pinkas, D., and R. Zuccherato,
                "Internet X.509 Public Key Infrastructure Time-Stamp
                Protocol (TSP)", <a href="./rfc3161">RFC 3161</a>, August 2001.





<span class="grey">Housley                       Informational                    [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   [<a id="ref-RFC3183">RFC3183</a>]    Dean, T. and W. Ottaway, "Domain Security Services using
                S/MIME", <a href="./rfc3183">RFC 3183</a>, October 2001.

   [<a id="ref-RFC3185">RFC3185</a>]    Farrell, S. and S. Turner, "Reuse of CMS Content
                Encryption Keys", <a href="./rfc3185">RFC 3185</a>, October 2001.

   [<a id="ref-RFC3211">RFC3211</a>]    Gutmann, P., "Password-based Encryption for CMS",
                <a href="./rfc3211">RFC 3211</a>, December 2001.

   [<a id="ref-RFC3274">RFC3274</a>]    Gutmann, P., "Compressed Data Content Type for
                Cryptographic Message Syntax (CMS)", <a href="./rfc3274">RFC 3274</a>, June
                2002.

   [<a id="ref-RFC3369">RFC3369</a>]    Housley, R., "Cryptographic Message Syntax (CMS)",
                <a href="./rfc3369">RFC 3369</a>, August 2002.

   [<a id="ref-RFC3370">RFC3370</a>]    Housley, R., "Cryptographic Message Syntax (CMS)
                Algorithms", <a href="./rfc3370">RFC 3370</a>, August 2002.

   [<a id="ref-RFC3537">RFC3537</a>]    Schaad, J. and R. Housley, "Wrapping a Hashed Message
                Authentication Code (HMAC) key with a Triple-Data
                Encryption Standard (DES) Key or an Advanced Encryption
                Standard (AES) Key", <a href="./rfc3537">RFC 3537</a>, May 2003.

   [<a id="ref-RFC3560">RFC3560</a>]    Housley, R., "Use of the RSAES-OAEP Key Transport
                Algorithm in Cryptographic Message Syntax (CMS)",
                <a href="./rfc3560">RFC 3560</a>, July 2003.

   [<a id="ref-RFC3565">RFC3565</a>]    Schaad, J., "Use of the Advanced Encryption Standard
                (AES) Encryption Algorithm in Cryptographic Message
                Syntax (CMS)", <a href="./rfc3565">RFC 3565</a>, July 2003.

   [<a id="ref-RFC3657">RFC3657</a>]    Moriai, S. and A. Kato, "Use of the Camellia Encryption
                Algorithm in Cryptographic Message Syntax (CMS)",
                <a href="./rfc3657">RFC 3657</a>, January 2004.

   [<a id="ref-RFC3851">RFC3851</a>]    Ramsdell, B., Ed., "Secure/Multipurpose Internet Mail
                Extensions (S/MIME) Version 3.1 Message Specification",
                <a href="./rfc3851">RFC 3851</a>, July 2004.

   [<a id="ref-RFC3852">RFC3852</a>]    Housley, R., "Cryptographic Message Syntax (CMS)",
                <a href="./rfc3852">RFC 3852</a>, July 2004.

   [<a id="ref-RFC3855">RFC3855</a>]    Hoffman, P. and C. Bonatti, "Transporting
                Secure/Multipurpose Internet Mail Extensions (S/MIME)
                Objects in X.400", <a href="./rfc3855">RFC 3855</a>, July 2004.





<span class="grey">Housley                       Informational                    [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   [<a id="ref-RFC4049">RFC4049</a>]    Housley, R., "BinaryTime: An Alternate Format for
                Representing Date and Time in ASN.1", <a href="./rfc4049">RFC 4049</a>,
                April 2005.

   [<a id="ref-RFC4073">RFC4073</a>]    Housley, R., "Protecting Multiple Contents with the
                Cryptographic Message Syntax (CMS)", <a href="./rfc4073">RFC 4073</a>, May 2005.

   [<a id="ref-RFC4108">RFC4108</a>]    Housley, R., "Using Cryptographic Message Syntax (CMS)
                to Protect Firmware Packages", <a href="./rfc4108">RFC 4108</a>, August 2005.

   [<a id="ref-RFC4211">RFC4211</a>]    Schaad, J., "Internet X.509 Public Key Infrastructure
                Certificate Request Message Format (CRMF)", <a href="./rfc4211">RFC 4211</a>,
                September 2005.

   [<a id="ref-RFC4998">RFC4998</a>]    Gondrom, T., Brandner, R., and U. Pordesch, "Evidence
                Record Syntax (ERS)", <a href="./rfc4998">RFC 4998</a>, August 2007.

   [<a id="ref-RFC5035">RFC5035</a>]    Schaad, J., "Enhanced Security Services (ESS) Update:
                Adding CertID Algorithm Agility", <a href="./rfc5035">RFC 5035</a>, August 2007.

   [<a id="ref-RFC5055">RFC5055</a>]    Freeman, T., Housley, R., Malpani, A., Cooper, D., and
                W. Polk, "Server-Based Certificate Validation Protocol
                (SCVP)", <a href="./rfc5055">RFC 5055</a>, December 2007.

   [<a id="ref-RFC5083">RFC5083</a>]    Housley, R., "Cryptographic Message Syntax (CMS)
                Authenticated-Enveloped-Data Content Type", <a href="./rfc5083">RFC 5083</a>,
                November 2007.

   [<a id="ref-RFC5084">RFC5084</a>]    Housley, R., "Using AES-CCM and AES-GCM Authenticated
                Encryption in the Cryptographic Message Syntax (CMS)",
                <a href="./rfc5084">RFC 5084</a>, November 2007.

   [<a id="ref-RFC5126">RFC5126</a>]    Pinkas, D., Pope, N., and J. Ross, "CMS Advanced
                Electronic Signatures (CAdES)", <a href="./rfc5126">RFC 5126</a>, March 2008.

   [<a id="ref-RFC5272">RFC5272</a>]    Schaad, J. and M. Myers, "Certificate Management over
                CMS (CMC)", <a href="./rfc5272">RFC 5272</a>, June 2008.

   [<a id="ref-RFC5275">RFC5275</a>]    Turner, S., "CMS Symmetric Key Management and
                Distribution", <a href="./rfc5275">RFC 5275</a>, June 2008.

   [<a id="ref-RFC5485">RFC5485</a>]    Housley, R., "Digital Signatures on Internet-Draft
                Documents", <a href="./rfc5485">RFC 5485</a>, March 2009.

   [<a id="ref-RFC5544">RFC5544</a>]    Santoni, A., "Syntax for Binding Documents with Time-
                Stamps", <a href="./rfc5544">RFC 5544</a>, February 2010.





<span class="grey">Housley                       Informational                    [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   [<a id="ref-RFC5649">RFC5649</a>]    Housley, R. and M. Dworkin, "Advanced Encryption
                Standard (AES) Key Wrap with Padding Algorithm",
                <a href="./rfc5649">RFC 5649</a>, September 2009.

   [<a id="ref-RFC5752">RFC5752</a>]    Turner, S. and J. Schaad, "Multiple Signatures in
                Cryptographic Message Syntax (CMS)", <a href="./rfc5752">RFC 5752</a>,
                January 2010.

   [<a id="ref-RFC5753">RFC5753</a>]    Turner, S. and D. Brown, "Use of Elliptic Curve
                Cryptography (ECC) Algorithms in Cryptographic Message
                Syntax (CMS)", <a href="./rfc5753">RFC 5753</a>, January 2010.

   [<a id="ref-RFC5755">RFC5755</a>]    Farrell, S., Housley, R., and S. Turner, "An Internet
                Attribute Certificate Profile for Authorization",
                <a href="./rfc5755">RFC 5755</a>, January 2010.

   [<a id="ref-RFC5911">RFC5911</a>]    Hoffman, P. and J. Schaad, "New ASN.1 Modules for
                Cryptographic Message Syntax (CMS) and S/MIME",
                <a href="./rfc5911">RFC 5911</a>, June 2010.

   [<a id="ref-RFC5914">RFC5914</a>]    Housley, R., Ashmore, S., and C. Wallace, "Trust Anchor
                Format", <a href="./rfc5914">RFC 5914</a>, June 2010.

   [<a id="ref-RFC5958">RFC5958</a>]    Turner, S., "Asymmetric Key Packages", <a href="./rfc5958">RFC 5958</a>,
                August 2010.

   [<a id="ref-RFC5990">RFC5990</a>]    Randall, J., Kaliski, B., Brainard, J., and S. Turner,
                "Use of the RSA-KEM Key Transport Algorithm in the
                Cryptographic Message Syntax (CMS)", <a href="./rfc5990">RFC 5990</a>,
                September 2010.

   [<a id="ref-RFC6010">RFC6010</a>]    Housley, R., Ashmore, S., and C. Wallace, "Cryptographic
                Message Syntax (CMS) Content Constraints Extension",
                <a href="./rfc6010">RFC 6010</a>, September 2010.

   [<a id="ref-RFC6031">RFC6031</a>]    Turner, S. and R. Housley, "Cryptographic Message Syntax
                (CMS) Symmetric Key Package Content Type", <a href="./rfc6031">RFC 6031</a>,
                December 2010.

   [<a id="ref-RFC6032">RFC6032</a>]    Turner, S. and R. Housley, "Cryptographic Message Syntax
                (CMS) Encrypted Key Package Content Type", <a href="./rfc6032">RFC 6032</a>,
                December 2010.

   [<a id="ref-RFC6210">RFC6210</a>]    Schaad, J., "Experiment: Hash Functions with Parameters
                in the Cryptographic Message Syntax (CMS) and S/MIME",
                <a href="./rfc6210">RFC 6210</a>, April 2011.





<span class="grey">Housley                       Informational                    [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7107">RFC 7107</a>                   S/MIME OID Registry              January 2014</span>


   [<a id="ref-RFC6211">RFC6211</a>]    Schaad, J., "Cryptographic Message Syntax (CMS)
                Algorithm Identifier Protection Attribute", <a href="./rfc6211">RFC 6211</a>,
                April 2011.

   [<a id="ref-RFC6268">RFC6268</a>]    Schaad, J. and S. Turner, "Additional New ASN.1 Modules
                for the Cryptographic Message Syntax (CMS) and the
                Public Key Infrastructure Using X.509 (PKIX)", <a href="./rfc6268">RFC 6268</a>,
                July 2011.

   [<a id="ref-RFC6476">RFC6476</a>]    Gutmann, P., "Using Message Authentication Code (MAC)
                Encryption in the Cryptographic Message Syntax (CMS)",
                <a href="./rfc6476">RFC 6476</a>, January 2012.

   [<a id="ref-RFC6482">RFC6482</a>]    Lepinski, M., Kent, S., and D. Kong, "A Profile for
                Route Origin Authorizations (ROAs)", <a href="./rfc6482">RFC 6482</a>, February
                2012.

   [<a id="ref-RFC6486">RFC6486</a>]    Austein, R., Huston, G., Kent, S., and M. Lepinski,
                "Manifests for the Resource Public Key Infrastructure
                (RPKI)", <a href="./rfc6486">RFC 6486</a>, February 2012.

   [<a id="ref-RFC6493">RFC6493</a>]    Bush, R., "The Resource Public Key Infrastructure (RPKI)
                Ghostbusters Record", <a href="./rfc6493">RFC 6493</a>, February 2012.

   [<a id="ref-RFC7030">RFC7030</a>]    Pritikin, M., Ed., Yee, P., Ed., and D. Harkins, Ed.,
                "Enrollment over Secure Transport", <a href="./rfc7030">RFC 7030</a>, October
                2013.

   [<a id="ref-SET-KEY">SET-KEY</a>]    Herzog, J. and R. Khazan, "A set-key attribute for
                symmetric-key packages", Work in Progress, October 2012.

<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  Acknowledgements</span>

   Many thanks to Suresh Krishnan, Jim Schaad, Sean Turner, and Carl
   Wallace for their careful review and comments.

Author's Address

   Russ Housley
   918 Spring Knoll Drive
   Herndon, VA  20170
   USA

   EMail: housley@vigilsec.com







Housley                       Informational                    [Page 18]
</pre>