-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkrb-aead-id.lyx
2049 lines (1516 loc) · 40.3 KB
/
krb-aead-id.lyx
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
#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass docbook
\use_default_options true
\maintain_unincluded_children false
\begin_local_layout
Format 31
InsetLayout Flex:PI_Strict
LyXType Custom
HTMLTag div
LabelString PI_Strict
End
InsetLayout Flex:PI
LyXType Custom
HTMLTag div
LabelString PI
End
InsetLayout Flex:PI_SymRefs
LyXType Custom
HTMLTag div
LabelString PI_SymRefs
End
InsetLayout Flex:PI_SortRefs
LyXType Custom
HTMLTag div
LabelString PI_SortRefs
End
InsetLayout Flex:PI_TOC
LyXType Custom
HTMLTag div
LabelString PI_TOC
End
InsetLayout Flex:PI_TOCIndent
LyXType Custom
HTMLTag div
LabelString PI_TOCIndent
End
InsetLayout Flex:PI_TOCDepth
LyXType Custom
HTMLTag div
LabelString PI_TOCDepth
End
InsetLayout Flex:PI_TOCNarrow
LyXType Custom
HTMLTag div
LabelString PI_TOCNarrow
End
InsetLayout Flex:PI_TOCCompact
LyXType Custom
HTMLTag div
LabelString PI_TOCCompact
End
InsetLayout Flex:PI_TOCAppendix
LyXType Custom
HTMLTag div
LabelString PI_TOCAppendix
End
InsetLayout Flex:DocName
LyXType Custom
HTMLTag div
LabelString DocName
End
InsetLayout Flex:IntendedStatus
LyXType Custom
HTMLTag div
LabelString IntendedStatus
End
InsetLayout Flex:Updates
LyXType Custom
HTMLTag div
LabelString Updates
End
InsetLayout Flex:Obsoletes
LyXType Custom
HTMLTag div
LabelString Obsoletes
End
InsetLayout Flex:SeriesNo
LyXType Custom
HTMLTag div
LabelString SeriesNo
End
InsetLayout Flex:RFCNumber
LyXType Custom
HTMLTag div
LabelString RFCNumber
End
InsetLayout Flex:IPR
LyXType Custom
HTMLTag div
LabelString IPR
End
InsetLayout Flex:IETFArea
LyXType Custom
HTMLTag div
LabelString IETFArea
End
InsetLayout Flex:IETFWorkingGroup
LyXType Custom
HTMLTag div
LabelString IETFWorkingGroup
End
InsetLayout Flex:XML2RFCKeyword
LyXType Custom
HTMLTag div
LabelString XML2RFCKeyword
End
InsetLayout Flex:TitleAbbrev
LyXType Custom
HTMLTag div
LabelString TitleAbbrev
End
InsetLayout Flex:AuthorRole
LyXType Custom
HTMLTag div
LabelString AuthRole
End
InsetLayout Flex:AuthorInitials
LyXType Custom
HTMLTag div
LabelString AuthInitials
End
InsetLayout Flex:AuthorSurname
LyXType Custom
HTMLTag div
LabelString AuthSurname
End
InsetLayout Flex:AuthorOrg
LyXType Custom
HTMLTag div
LabelString AuthOrg
End
InsetLayout Flex:AuthorOrgAbbrev
LyXType Custom
HTMLTag div
LabelString AuthOrgAbbrev
End
InsetLayout Flex:AuthorEmailAddr
LyXType Custom
HTMLTag div
LabelString AuthEmailAddr
End
InsetLayout Flex:AuthorAddrStreet
LyXType Custom
HTMLTag div
LabelString AuthAddrStreet
End
InsetLayout Flex:AuthorAddrCity
LyXType Custom
HTMLTag div
LabelString AuthAddrCity
End
InsetLayout Flex:AuthorAddrRegion
LyXType Custom
HTMLTag div
LabelString AuthAddrRegion
End
InsetLayout Flex:AuthorAddrCode
LyXType Custom
HTMLTag div
LabelString AuthAddrCode
End
InsetLayout Flex:AuthorAddrCountry
LyXType Custom
HTMLTag div
LabelString AuthAddrCountry
End
InsetLayout Flex:EntityXRef
LyXType Custom
HTMLTag div
LabelString EntityXRef
End
InsetLayout Flex:BibXML
LyXType Custom
HTMLTag div
LabelString BibXML
End
InsetLayout Flex:EmbeddedBibXML
LyXType Custom
HTMLTag div
LabelString EmbeddedBibXML
End
\end_local_layout
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman cmr
\font_sans cmss
\font_typewriter cmtt
\font_default_family ttdefault
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine basic
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Title
AEAD Encryption Types for Kerberos 5
\end_layout
\begin_layout Standard
\begin_inset Flex DocName
status open
\begin_layout Plain Layout
draft-howard-krb-aead-01
\end_layout
\end_inset
\begin_inset Flex IPR
status open
\begin_layout Plain Layout
trust200902
\end_layout
\end_inset
\begin_inset Flex IntendedStatus
status open
\begin_layout Plain Layout
exp
\end_layout
\end_inset
\begin_inset Flex TitleAbbrev
status open
\begin_layout Plain Layout
AEAD Encryption Types for Kerberos 5
\end_layout
\end_inset
\begin_inset Flex IETFArea
status open
\begin_layout Plain Layout
Security Area
\end_layout
\end_inset
\begin_inset Flex XML2RFCKeyword
status open
\begin_layout Plain Layout
Internet-Draft
\end_layout
\end_inset
\begin_inset Flex Updates
status open
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Flex PI TOC
status open
\begin_layout Plain Layout
yes
\end_layout
\end_inset
\begin_inset Flex PI SymRefs
status open
\begin_layout Plain Layout
yes
\end_layout
\end_inset
\begin_inset Flex PI TOCIndent
status open
\begin_layout Plain Layout
no
\end_layout
\end_inset
\begin_inset Flex PI
status open
\begin_layout Plain Layout
comments="yes"
\end_layout
\end_inset
\begin_inset Flex PI
status open
\begin_layout Plain Layout
inline="yes"
\end_layout
\end_inset
\end_layout
\begin_layout Author
Luke Howard
\begin_inset Flex AuthorOrg
status open
\begin_layout Plain Layout
PADL Software
\end_layout
\end_inset
\begin_inset Flex AuthorOrgAbbrev
status open
\begin_layout Plain Layout
PADL
\end_layout
\end_inset
\begin_inset Flex AuthorInitials
status open
\begin_layout Plain Layout
L.
\end_layout
\end_inset
\begin_inset Flex AuthorSurname
status open
\begin_layout Plain Layout
Howard
\end_layout
\end_inset
\begin_inset Flex AuthorAddrStreet
status open
\begin_layout Plain Layout
PO Box 59
\end_layout
\end_inset
\begin_inset Flex AuthorAddrCity
status open
\begin_layout Plain Layout
Central Park
\end_layout
\end_inset
\begin_inset Flex AuthorAddrRegion
status open
\begin_layout Plain Layout
VIC
\end_layout
\end_inset
\begin_inset Flex AuthorAddrCountry
status open
\begin_layout Plain Layout
Australia
\end_layout
\end_inset
\begin_inset Flex AuthorAddrCode
status open
\begin_layout Plain Layout
3145
\end_layout
\end_inset
\begin_inset Flex AuthorEmailAddr
status open
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Abstract
This document updates
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
to support encryption mechanisms that can authenticate associated data,
such as Counter with CBC-MAC (CCM) and Galois/Counter Mode (GCM).
These mechanisms are often more performant and need not expand the message
as much as conventional modes.
\end_layout
\begin_layout Standard
\begin_inset CommandInset toc
LatexCommand tableofcontents
\end_inset
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "sec:Introduction"
\end_inset
Introduction
\end_layout
\begin_layout Standard
This document updates
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
for encryption mechanisms that support Authenticated Encryption with Associated
Data (AEAD), such as Counter with CBC-MAC (CCM) and Galois/Counter Mode
(GCM).
These mechanisms provide the ability to authenticate additional data associated
with a plaintext.
\end_layout
\begin_layout Standard
In addition, these mechanisms often have performance advantage over conventional
encryption modes such as Cipher Block Chaining (CBC) and Ciphertext Stealing
(CTS) as they can be efficiently parallelized and the absence of a confounder
allows for shorter messages.
For example, the ciphertext output by the AEAD encryption mechanisms described
in this document is 28 bytes shorter than those specified in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3962
\end_layout
\end_inset
.
\end_layout
\begin_layout Section
Requirements notation
\end_layout
\begin_layout Standard
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
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC2119
\end_layout
\end_inset
.
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "sec:AEAD"
\end_inset
Authenticated Encryption with Associated Data (AEAD) Overview
\end_layout
\begin_layout Standard
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
provides for authenticated encryption of plaintext in Kerberos 5, that
is, it provides both for confidentiality and a way to check the for integrity
and authenticity of a message.
Some applications can benefit from protecting the integrity and authenticity
of unencrypted data accompanying a ciphertext: this is termed Authenticated
Encryption with Associated Data (AEAD).
(A general description of AEAD is given in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC5116
\end_layout
\end_inset
.)
\end_layout
\begin_layout Standard
Existing encryption and checksum mechanisms can provide AEAD through generic
composition, where the checksum is made over both the associated data and
plaintext.
Alternatively, modern encryption mechanisms such as those profiled in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC5116
\end_layout
\end_inset
explicitly provide for AEAD.
Both approaches are discussed in this document.
\end_layout
\begin_layout Standard
Algorithms that are specifically designed for AEAD may have additional constrain
ts to be imposed on cryptosystems that would otherwise be definable in terms
of
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
.
We term these algorithms native AEAD, to distinguish them from the generic
composition of non-AEAD encryption and checksum types.
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "sec:Updates"
\end_inset
Updates to RFC 3961
\end_layout
\begin_layout Standard
The changes described below amend
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
for use with native AEAD encryption types.
\end_layout
\begin_layout Subsection
Additional Requirements
\end_layout
\begin_layout Standard
The native AEAD algorithms profiled in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC5116
\end_layout
\end_inset
and
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC7539
\end_layout
\end_inset
have the property where the reuse of a particular combination of secret
key and initialization vector destroys all security guarantees of the underlyin
g mechanism.
This contrasts with existing Kerberos ciphers such as those defined in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3962
\end_layout
\end_inset
where the random confounder (used instead of an initialization vector)
need not be non-repeating.
\end_layout
\begin_layout Standard
To accommodate the use of native AEAD cryptosystems with Kerberos, we allow
an encryption mechanism profile to adjust its behavior depending on whether
a long-term is being used.
It is valid for a profile to not support long-term keys.
\end_layout
\begin_layout Standard
Where an ephemeral key is used, applications MUST guarantee that each invocation
of the encryption function with a particular key will use a unique cipherstate.
(An example of an ephemeral key is the subkey present in an AP-REP message.)
\end_layout
\begin_layout Standard
Native AEAD encryption types share the same namespace as existing Kerberos
algorithms so they may take advantage of existing cryptosystem negotiation
facilities such as
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC4537
\end_layout
\end_inset
.
Encryption types that only support ephemeral keys SHALL NOT be advertised
in protocols that require the use of long-term keys.
\end_layout
\begin_layout Subsection
Removal of Mandatory Requirements
\end_layout
\begin_layout Standard
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
requires that an encryption mechanism profile define both an associated
checksum type and a string-to-key function.
\end_layout
\begin_layout Standard
Native AEAD algorithms do not provide for integrity protection outside of
authenticated encryption, so we remove the requirement for an associated
checksum type.
(An application that only requires integrity protection may invoke the
authenticated encryption function with a zero length plaintext.)
\end_layout
\begin_layout Standard
These ciphers are not required to support long-term keys, so we remove the
requirement that a string-to-key function be defined.
\end_layout
\begin_layout Subsection
\begin_inset CommandInset label
LatexCommand label
name "sub:Application-managed-Cipherstate"
\end_inset
Application-managed Cipherstate
\end_layout
\begin_layout Standard
Whilst
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
requires that the cipherstate be opaque to the application, we relax this
so that the application may manage some or all of the cipherstate explicitly.
Native AEAD ciphers SHALL nominate how many bits of their cipherstate may
be deterministic and, by extension, may be managed by the application.
(The encryption types defined in this document allow all bits of the cipherstat
e to be managed by the application.)
\end_layout
\begin_layout Standard
In order to meet the security requirements of the underlying cryptosystems,
applications using ephemeral keys MUST NOT invoke the authenticated encryption
function with a previously used (key, cipherstate) combination.
\end_layout
\begin_layout Standard
Applications that support native AEAD ciphers MAY impose a minimum deterministic
octet length requirement on the cipherstate.
Such applications MUST NOT be used with ciphers with a shorter cipherstate
length.
\end_layout
\begin_layout Standard
Applications MAY set the deterministic cipherstate component directly on
each invocation of the authenticated encryption function.
This allows a non-repeating counter such as a sequence number to be embedded
in the cipherstate, without preventing the application from processing
out-of-order messages.
Alternatively, an application MAY set the initial cipherstate to a random
value and pass the cipherstate output from the authenticated encryption
and decryption functions to subsequent invocations.
Using a randomly generated cipherstate on each invocation may place a limit
on the number of invocations of the authenticated encryption function when
compared with a deterministic construction.
\end_layout
\begin_layout Subsection
Encrypt/decrypt with Associated Data
\end_layout
\begin_layout Standard
We define the following functions for encrypting and decrypting with associated
data:
\end_layout
\begin_layout Itemize
encrypt-with-ad (specific-key, state, associated data, octet string, is-longterm
)->(state, octet string)
\end_layout
\begin_layout Itemize
decrypt-with-ad (specific-key, state, associated data, octet string, is-longterm
)->(state, octet string)
\end_layout
\begin_layout Standard
The associated data parameter is input only and contains data that is to
be authenticated, but not encrypted.
If the associated data or plaintext are zero length strings, then these
functions are equivalent respectively to the checksum and encryption functions
described in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
.
\end_layout
\begin_layout RevisionRemark
NB: these functions only allow a single associated data and plaintext buffer
to be supplied, which is not compatible with applications such as DCE RPC
that interleave the associated data and plaintext buffers.
Support for such applications is implementation dependent and not guaranteed
to work with native AEAD ciphers that only take a single buffer of each.
\end_layout
\begin_layout Standard
The boolean is-longterm parameter indicates whether specific-key is a long-term
key or a session key.
\end_layout
\begin_layout Standard
Correspondingly, the encrypt and decrypt functions are updated to take the
is-longterm parameter:
\end_layout
\begin_layout Itemize
encrypt (specific-key, state, octet string, is-longterm)->(state, octet
string)
\end_layout
\begin_layout Itemize
decrypt (specific-key, state, octet string, is-longterm)->(state, octet
string)
\end_layout
\begin_layout Standard
A profile that specifices encrypt-with-ad and decrypt-with-ad need not explicitl
y specify encrypt and decrypt functions.
Profiles that adhere to
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
take an implicit value of TRUE for is-longterm.
\end_layout
\begin_layout Subsection
AEAD with Simplified Profile
\end_layout
\begin_layout Standard
We allow the authentication of associated data with existing cryptosystems
that follow the Simplified Profile defined in
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
through the generic composition of the encryption and checksum functions.
The is-longterm parameter is ignored.
For consistency with
\begin_inset Flex EntityXRef
status open
\begin_layout Plain Layout
RFC3961
\end_layout
\end_inset
the following definition uses 1-based indexing.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
encrypt-with-ad conf = Random string of length c
\end_layout
\begin_layout Plain Layout
pad = Shortest string to bring confounder
\end_layout
\begin_layout Plain Layout
and plaintext to a length that's a
\end_layout
\begin_layout Plain Layout
multiple of M
\end_layout
\begin_layout Plain Layout