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
|
Internet Research Task Force (IRTF) J. Schmidt
Request for Comments: 8125 secunet Security Networks
Category: Informational April 2017
ISSN: 2070-1721
Requirements for Password-Authenticated Key Agreement (PAKE) Schemes
Abstract
Password-Authenticated Key Agreement (PAKE) schemes are interactive
protocols that allow the participants to authenticate each other and
derive shared cryptographic keys using a (weaker) shared password.
This document reviews different types of PAKE schemes. Furthermore,
it presents requirements and gives recommendations to designers of
new schemes. It is a product of the Crypto Forum Research Group
(CFRG).
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 Research Task Force
(IRTF). The IRTF publishes the results of Internet-related research
and development activities. These results might not be suitable for
deployment. This RFC represents the consensus of the Crypto Forum
Research Group of the Internet Research Task Force (IRTF). Documents
approved for publication by the IRSG are not a candidate for any
level of Internet Standard; see Section 2 of RFC 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc8125.
Copyright Notice
Copyright (c) 2017 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) 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.
Schmidt Informational [Page 1]
^L
RFC 8125 PAKE Scheme Requirements April 2017
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
2. Requirements Notation . . . . . . . . . . . . . . . . . . . . 3
3. PAKE Taxonomy . . . . . . . . . . . . . . . . . . . . . . . . 3
3.1. Storage of the Password . . . . . . . . . . . . . . . . . 3
3.2. Transmission of Public Keys . . . . . . . . . . . . . . . 4
3.3. Two Party versus Multiparty . . . . . . . . . . . . . . . 4
4. Security of PAKEs . . . . . . . . . . . . . . . . . . . . . . 5
4.1. Implementation Aspects . . . . . . . . . . . . . . . . . 6
4.2. Special Case: Elliptic Curves . . . . . . . . . . . . . . 6
5. Protocol Considerations and Applications . . . . . . . . . . 7
6. Privacy . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
7. Performance . . . . . . . . . . . . . . . . . . . . . . . . . 8
8. Requirements . . . . . . . . . . . . . . . . . . . . . . . . 8
9. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 9
10. Security Considerations . . . . . . . . . . . . . . . . . . . 9
11. References . . . . . . . . . . . . . . . . . . . . . . . . . 9
11.1. Normative References . . . . . . . . . . . . . . . . . . 9
11.2. Informative References . . . . . . . . . . . . . . . . . 9
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 10
1. Introduction
Passwords are the predominant method of accessing the Internet today
due, in large part, to their intuitiveness and ease of use. Since a
user needs to enter passwords repeatedly in many connections and
applications, these passwords tend to be easy to remember and can be
entered repeatedly with a low probability of error. They tend to be
low-grade and not-so-random secrets that are susceptible to brute-
force guessing attacks.
A Password-Authenticated Key Exchange (PAKE) attempts to address this
issue by constructing a cryptographic key exchange that does not
result in the password, or password-derived data, being transmitted
across an unsecured channel. Two parties in the exchange prove
possession of the shared password without revealing it. Such
exchanges are therefore resistant to offline, brute-force dictionary
attacks. The idea was initially described by Bellovin and Merritt in
[BM92] and has received considerable cryptographic attention since
then. PAKEs are especially interesting due to the fact that they can
achieve mutual authentication without requiring any Public Key
Infrastructure (PKI).
Schmidt Informational [Page 2]
^L
RFC 8125 PAKE Scheme Requirements April 2017
Different types of PAKE schemes are reviewed in this document. It
defines requirements for new schemes and gives additional
recommendations for designers of PAKE schemes. The specific
recommendations are discussed throughout Sections 3-7. Section 8
summarizes the requirements.
The requirements mentioned in this document have been discussed with
active members and represent the consensus of the Crypto Forum
Research Group (CFRG).
2. Requirements Notation
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 [RFC2119].
3. PAKE Taxonomy
Broadly speaking, different PAKEs satisfy their goals in a number of
common ways. This leads to various design choices: how public keys
are transmitted (encrypted or not), whether both parties possess the
same representation of the password (balanced versus augmented), and
the number of parties (two party versus multiparty).
3.1. Storage of the Password
When both sides of a PAKE store the same representation of the
password, the PAKE is said to be "balanced". In a balanced PAKE, the
password can be stored directly in a salted state by hashing it with
a random salt or by representing the credential as an element in a
finite field (by, for instance, multiplying a generator from a finite
field and the password represented as a number to produce a "password
element"). The benefits of such PAKEs are that they are applicable
to situations where either party can initiate the exchange or both
parties can initiate simultaneously, i.e., where they both believe
themselves to be the "initiator". This sort of PAKE can be useful
for mesh networking (see, for example, [DOT11]) or Internet of Things
applications.
When one side maintains a transform of the password and the other
maintains the raw password, the PAKE is said to be "augmented".
Typically, a client will maintain the raw password (or some
representation of it as in the balanced case), and a server will
maintain a transformed element generated with a one-way function.
The benefit of an augmented PAKE is that it provides some protection
for the server's password in a way that is not possible with a
balanced PAKE. In particular, an adversary that has successfully
obtained the server's PAKE credentials cannot directly use them to
Schmidt Informational [Page 3]
^L
RFC 8125 PAKE Scheme Requirements April 2017
impersonate the users to other servers. The adversary has to learn
the individual passwords first, e.g., by performing an (offline)
dictionary attack. This sort of PAKE is useful for strict client-
server protocols such as the one discussed in [RFC5246].
3.2. Transmission of Public Keys
All known PAKEs use public key cryptography. A fundamental
difference in PAKEs is how the public key is communicated in the
exchange.
One class of PAKEs uses symmetric key cryptography, with a key
derived from the password, to encrypt an ephemeral public key. The
ability of the peer to demonstrate that it has successfully decrypted
the public key proves knowledge of the shared password. Examples of
this exchange include the first PAKE, called the "Encrypted Key
Exchange (EKE)", which was introduced in [BM92].
Another class of PAKEs transmits unencrypted public keys, like the
J-PAKE (Password Authenticated Key Exchange by Juggling) protocol
[JPAKE]. During key agreement, ephemeral public keys and values
derived using the shared password are exchanged. If the passwords
match, both parties can compute a common secret by combining
password, public keys, and private keys. The SPEKE (Strong Password-
Only Authenticated Key Exchange) [SPEKE] scheme also exchanges public
keys, namely Diffie-Hellman values. Here, the generator for the
public keys is derived from the shared secret. Afterwards, only the
public Diffie-Hellman values are exchanged; the generator is kept
secret. In both cases, the values that are transmitted across the
unsecured medium are elements in a finite field and not a random
blob.
A combination of EKE and SPEKE is used in PACE as described in
[BFK09], which is, e.g., used in international travel documents. In
this method, a nonce is encrypted rather than a key. This nonce is
used to generate a common base for the key agreement. Without
knowing the password, the nonce cannot be determined; hence, the
subsequent key agreement will fail.
3.3. Two Party versus Multiparty
The majority of PAKE protocols allow two parties to agree on a shared
key based on a shared password. Nevertheless, there exist proposals
that allow key agreement for more than two parties. Those protocols
allow key establishment for a group of parties and are hence called
"Group PAKEs" or "GPAKEs". Examples of such protocols can be found
in [ABCP06], while [ACGP11] and [HYCS15] propose a generic
construction that allows the transformation of any two-party PAKE
Schmidt Informational [Page 4]
^L
RFC 8125 PAKE Scheme Requirements April 2017
into a GPAKE protocol. Another possibility of defining a multiparty
PAKE protocol is to assume the existence of a trusted server with
which each party shares a password. This server enables different
parties to agree on a common secret key without the need to share a
password among themselves. Each party has only a shared secret with
the trusted server. For example, Abdalla et al. designed such a
protocol as discussed in [AFP05].
4. Security of PAKEs
PAKE schemes are modeled on the scenario of two parties, typically
Alice and Bob, who share a password (or perhaps Bob shares a function
of the password) and would like to use it to establish a secure
session key over an untrusted link. There is a powerful adversary,
typically Eve, who would like to subvert the exchange. Eve has
access to a dictionary that is likely to contain Alice and Bob's
password, and Eve is capable of enumerating through the dictionary in
a brute-force manner to try and discover Alice and Bob's password.
All PAKEs have a limitation. If Eve guesses the password, she can
subvert the exchange. It is therefore necessary to model the
likelihood that Eve will guess the password to access the security of
a PAKE. If the probability of her discovering the password is a
function of interaction with the protocol participants and not a
function of computation, then the PAKE is secure (that is, Eve is
unable to take information from a passive attack or from a single
active attack). Thus, she cannot enumerate through her dictionary
without interacting with Alice or Bob for each password guess, i.e.,
the only attack left is repeated guessing. Eve learns one thing from
a single active attack: whether her single guess is correct or not.
In other words, the security of a PAKE scheme is based on the idea
that Eve, who is trying to impersonate Alice, cannot efficiently
verify a password guess without interacting with Bob (or Alice). If
she were to interact with either, she would thereby be detected.
Thus, it is important to balance restricting the number of allowed
authentication attempts with the potential of a denial-of-service
vulnerability. In order to judge and compare the security of PAKE
schemes, security proofs in commonly accepted models SHOULD be used.
Each proof and model, however, is based on assumptions. Often,
security proofs show that if an adversary is able to break the
scheme, the adversary is also able to solve a problem that is assumed
to be hard, such as computing a discrete logarithm. By conversion,
breaking the scheme is considered to be a hard problem as well.
A PAKE scheme SHOULD be accompanied with a security proof with
clearly stated assumptions and models used. In particular, the proof
MUST show that the probability is negligible that an active adversary
Schmidt Informational [Page 5]
^L
RFC 8125 PAKE Scheme Requirements April 2017
would be able to pass authentication, learn additional information
about the password, or learn anything about the established key.
Moreover, the authors MAY specify which underlying primitives are to
be used with the scheme or MAY consider specific use cases or
assumptions like resistance to quantum computers. A clear and
comprehensive proof is the foundation for users to trust in the
security of the scheme.
4.1. Implementation Aspects
Aside from the theoretical security of a scheme, practical
implementation pitfalls have to be considered as well. If not
carefully implemented, even a scheme that is secure in a well-defined
mathematical model can leak information via side channels. The
design of the scheme might allow or prevent easy protection against
information leakage. In a network scenario, an adversary can measure
the time that the computation of an answer takes and derive
information about secret parameters of the scheme. If a device
operates in a potentially hostile environment, such as a smart card,
other side channels like power consumption and electromagnetic
emanations or even active implementation attacks have to be taken
into account as well.
The developers of a scheme SHOULD keep the implementation aspects in
mind and show how to implement the protocol in constant time.
Furthermore, adding a discussion about how to protect implementations
of the scheme in potential hostile environments is encouraged.
4.2. Special Case: Elliptic Curves
Since Elliptic Curve Cryptography (ECC) allows for a smaller key
length compared to traditional schemes based on the discrete
logarithm problem in finite fields at similar security levels, using
ECC for PAKE schemes is also of interest. In contrast to schemes
that can use the finite field element directly, an additional
challenge has to be considered for some schemes based on ECC, namely
the mapping of a random string to an element that can be computed
with, i.e., a point on the curve. In some cases, the opposite is
also needed, i.e., the mapping of a curve point to a string that is
not distinguishable from a random one. When choosing a mapping, it
is crucial to consider the implementation aspects as well.
If the PAKE scheme is intended to be used with ECC, the authors
SHOULD state whether there is a mapping function needed and, if so,
discuss its requirements. Alternatively, the authors MAY define a
mapping to be used with the scheme.
Schmidt Informational [Page 6]
^L
RFC 8125 PAKE Scheme Requirements April 2017
5. Protocol Considerations and Applications
In most cases, the PAKE scheme is a building block in a more complex
protocol like IPsec or Transport Layer Security (TLS). This can
influence the choice of a suitable PAKE scheme. For example, an
augmented scheme can be beneficial for protocols that have a strict
server-client relationship. If both parties can initiate a
connection of a protocol, a balanced PAKE might be more appropriate.
A special variation of the network password problem, called
"Password-Authenticated Key Distribution", is defined in [P1363] as
password-authenticated key retrieval: "The retrieval of a key from a
secure key repository or escrow requiring authentication derived in
part from a password."
In addition to key retrieval from escrow, there is also the variant
of two parties exchanging public keys using a PAKE in lieu of
certificates. In this variant, public keys can be encrypted using a
password. Authentication key distribution can be performed because
each side knows the private key associated with its unencrypted
public key and can also decrypt the peer's public key. This
technique can be used to transform a short, one-time code into a
long-term public key.
Another possible variant of a PAKE scheme allows combining
authentication with certificates and the use of passwords. In this
variant, the private key of the certificate is used to blind the
password key agreement. For verification, the message is unblinded
with the public key. A correct key establishment therefore implies
the possession of the private key belonging to the certificate. This
method enables one-sided authentication as well as mutual
authentication when the password is used.
The authors of a PAKE scheme MAY discuss variations of their scheme
and explain application scenarios where these variations are
beneficial. In particular, techniques that allow long-term (public)
key agreement are encouraged.
6. Privacy
In order to establish a connection, each party of the PAKE protocol
needs to know the identity of its communication partner to identify
the right password for the agreement. In cases where a user wants to
establish a secure channel with a server, the user first has to let
the server know which password to use by sending some kind of
identifier to the server. If this identifier is not protected,
everyone who is able to eavesdrop on the connection can identify the
user. In order to prevent this and protect the privacy of the user,
Schmidt Informational [Page 7]
^L
RFC 8125 PAKE Scheme Requirements April 2017
the scheme might provide a way to protect the transmission of the
user's identity. A simple way to protect the privacy of a user that
communicates with a server is to use a public key provided by the
server to encrypt the user's identity.
The PAKE scheme MAY discuss special ideas and solutions about how to
protect the privacy of the users of the scheme.
7. Performance
The performance of a scheme can be judged along different lines
depending on the optimization goals of the target application.
Potential metrics include latency, code size/area, power consumption,
or exchanged messages. In addition, there might be application
scenarios in which a constrained client communicates with a powerful
server. In such a case, the scheme has to require minimal efforts on
the client side. Note that for some clients, the computations might
even be carried out in a hardware implementation, which requires
different optimizations compared to software.
Furthermore, the design of the scheme can influence the cost of
protecting the implementation from adversaries exploiting its
physical properties (see Section 4.1).
The authors of a PAKE scheme MAY discuss their design choices and the
influence of these choices on the performance. In particular, the
optimization goals could be stated.
8. Requirements
This section summarizes the requirements for PAKE schemes to be
compliant with this document based on the previously discussed
properties.
REQ1: A PAKE scheme MUST clearly state its features regarding
balanced/augmented versions.
REQ2: A PAKE scheme SHOULD come with a security proof and clearly
state its assumptions and models.
REQ3: The authors SHOULD show how to protect their PAKE scheme
implementation in hostile environments, particularly, how to
implement their scheme in constant time to prevent timing
attacks.
REQ4: If the PAKE scheme is intended to be used with ECC, the
authors SHOULD discuss their requirements for a potential
mapping or define a mapping to be used with the scheme.
Schmidt Informational [Page 8]
^L
RFC 8125 PAKE Scheme Requirements April 2017
REQ5: The authors of a PAKE scheme MAY discuss its design choice
with regard to performance, i.e., its optimization goals.
REQ6: The authors of a scheme MAY discuss variations of their scheme
that allow the use in special application scenarios. In
particular, techniques that facilitate long-term (public) key
agreement are encouraged.
REQ7: Authors of a scheme MAY discuss special ideas and solutions on
privacy protection of its users.
REQ8: The authors MUST follow the IRTF IPR policy
<https://irtf.org/ipr>.
9. IANA Considerations
This document does not require any IANA actions.
10. Security Considerations
This document analyzes requirements for a cryptographic scheme.
Security considerations are discussed throughout the document.
11. References
11.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
11.2. Informative References
[ABCP06] Abdalla, M., Bresson, E., Chevassut, O., and D.
Pointcheval, "Password-Based Group Key Exchange in a
Constant Number of Rounds", PKC 2006, LNCS 3958,
DOI 10.1007/11745853_28, 2006.
[ACGP11] Abdalla, M., Chevalier, C., Granboulan, L., and D.
Pointcheval, "Contributory Password-Authenticated Group
Key Exchange with Join Capability", CT-RSA 2011,
LNCS 6558, DOI 10.1007/978-3-642-19074-2_11, 2011.
[AFP05] Abdalla, M., Fouque, P., and D. Pointcheval, "Password-
Based Authenticated Key Exchange in the Three-Party
Setting", PKC 2005, LNCS 3386,
DOI 10.1007/978-3-540-30580-4_6, 2005.
Schmidt Informational [Page 9]
^L
RFC 8125 PAKE Scheme Requirements April 2017
[BFK09] Bender, J., Fischlin, M., and D. Kuegler, "Security
Analysis of the PACE Key-Agreement Protocol", ISC 2009,
LNCS 5735, DOI 10.1007/978-3-642-04474-8_3, 2009.
[BM92] Bellovin, S. and M. Merritt, "Encrypted Key Exchange:
Password-Based Protocols Secure against Dictionary
Attacks", Proc. of the Symposium on Security and
Privacy, Oakland, DOI 10.1109/RISP.1992.213269, 1992.
[DOT11] IEEE, "IEEE Standard for Information technology--
Telecommunications and information exchange between
systems Local and metropolitan area networks--Specific
requirements - Part 11: Wireless LAN Medium Access Control
(MAC) and Physical Layer (PHY) Specifications",
IEEE 802.11, DOI 10.1109/IEEESTD.2016.7786995.
[HYCS15] Hao, F., Yi, X., Chen, L., and S. Shahandashti, "The
Fairy-Ring Dance: Password Authenticated Key Exchange in a
Group", IoTPTS 2015, DOI 10.1145/2732209.2732212, 2015.
[JPAKE] Hao, F. and P. Ryan, "Password Authenticated Key Exchange
by Juggling", SP 2008, LNCS 6615,
DOI 10.1007/978-3-642-22137-8_23, 2008.
[P1363] IEEE Microprocessor Standards Committee, "Draft Standard
Specifications for Password-Based Public Key Cryptographic
Techniques", IEEE P1363.2, 2006.
[RFC5246] Dierks, T. and E. Rescorla, "The Transport Layer Security
(TLS) Protocol Version 1.2", RFC 5246,
DOI 10.17487/RFC5246, August 2008,
<http://www.rfc-editor.org/info/rfc5246>.
[SPEKE] Jablon, D., "Strong Password-Only Authenticated Key
Exchange", ACM SIGCOMM Computer Communications
Review, Volume 26, Issue 5, DOI 10.1145/242896.242897,
October 1996.
Author's Address
Joern-Marc Schmidt
secunet Security Networks
Mergenthaler Allee 77
65760 Eschborn
Germany
Email: joern-marc.schmidt@secunet.com
Schmidt Informational [Page 10]
^L
|