• No results found

Cryptanalysis of the MEM Mode of Operation

N/A
N/A
Protected

Academic year: 2020

Share "Cryptanalysis of the MEM Mode of Operation"

Copied!
6
0
0

Loading.... (view fulltext now)

Full text

(1)

Cryptanalysis of the MEM Mode of Operation

Peng Wang1 and Dengguo Feng1,2 and Wenling Wu2

1 State Key Laboratory of Information Security

Graduate School of Chinese Academy of Sciences, Beijing 100049, China [email protected]

2 State Key Laboratory of Information Security

Institution of Software of Chinese Academy of Sciences, Beijing 100080, China {feng,wwl}@is.iscas.ac.cn

Abstract. The MEM mode is a nonce-based enciphering mode of op-eration proposed by Chakraborty and Sarkar, which was claimed to be secure against symmetric nonce respecting adversaries. We show that this is not correct by using two very simple attcks. One attack need one decryption and one decryption queries, and the other only need one encryption query.

Keywords. Blockcipher, tweakable blockcipher, modes of operation, nonce-based encryption.

1

Introduction

Amode of operation, or mode, for short, is a scheme that specifies how to use a

blockcipher to provide some cryptographic services, such as privacy or authen-ticity. Recently, Chakraborty and Sarkar proposed the MEM (Mask Encrypt Mask) mode, anonce-based enciphering, or length preserving encryption, mode of operation which was claimed to be secure againstsymmetric nonce respecting

adversaries.

Suppose the underlying blockcipher is

E:K × {0,1}n→ {0,1}n

whereK is a key space, then the MEM mode is

MEM[E] :K × N ×({0,1}n)+({0,1}n)+

whereN ={0,1}n is a nonce space and the key space Kis same as that of the

underlying blockcipher E. LetEK(·,·) andDK(·,·) be the encryption and the

decryption algorithms of MEM respectively, and letDK be the inverse ofEK.

Symmetric Nonce Respecting Adversaries. The nonce-based encryption

(2)

mode [RBBK01,Rog04a], then adopted by the GCM mode [MV02], the CWC mode [KVW04], the EAX mode [BRW04], etc.

The security model of MEM assumes that the adversary be symmetric nonce respecting, i.e., the adversary can not repeat nonce in either encryption or de-cryption query. Note that an adversary is allowed to choose the same nonce for both the encryption and the decryption queries. Without loss generality, we also assume that the adversary does not makepointlessquery, such as as a decryption query of (N, C) after get it as an answer to an encryption query, etc. To sum up, the disallowed queries for the symmetric nonce respecting adversaries are listed bellow:

When query and get then these queries are disallowed:

EK(N, P) C EK(N,·),DK(N, C)

DK(N, C) P DK(N,·),EK(N, P)

Symmetric nonce respecting model is a reasonable in certain scenarios [CS06]. Get rid of the nonce respecting restriction, the security mode is exactly that of strong securetweakable blockcipher[LRW02]. Dedicated strong secure tweakable blockcipher constructions, such as CMC [HR03], EME [HR04], HCTR [WFW05], etc. are of course secure against symmetric nonce respecting adversaries.

Security Claimed by [CS06]. Chakraborty,et al. claimed that the symmetric nonce respecting adversary cannot distinguish the output ofEK(·,·) andDK(·,·)

from that of a random tweakable permutation and its inverse; Or equivalently saying [CS06,HR03,HR04], this kind of adversary cannot distinguish the output of EK(·,·) and DK(·,·) from that of $(·,·) and $(·,·), where $(N, P) returns a

random string of length|P|. Letdenote the indistinguishability. They “proved” that:

EK(·,·),DK(·,·) $(·,·),$(·,·).

The security proof is always a subtle thing, especial a long one. For example, the EMD mode [Rog02] proposed by Rogaway also had a proof, but was soon broken by Joux [Jou03].

Our Contributions. We show that EME is not secure against symmetric nonce respecting adversaries at all. The first attack makes one decryption and one encryption queries. The second attack makes only one encryption query.

2

Specifications of MEM

Ann-bit string is viewed as an element in the finite fieldGF(2)[x](x), where τ(x) is a fixed irreducible polynomial of degreen.

MEM makes use of the polynomials pi(x) which are defined as following.

(3)

mod (n+ 1) + 1; for 0< i < mand (n+ 1)|i, definepi(x) =xn+ 1; fori=m,

definepi=xj−1+ 1, wherej= (i−1) mod (n+ 1) + 1.

The encryption and decryption algorithms of EME are listed in the figure 1, which consists of three cases: m= 1,m= 2 andm >2. In our attacks we only make use of the case m > 2. Figure 2 shows the enciphering of a four-block message.

Algorithm EN

K(P1, P2,· · ·, Pm)

EN←EK(N);EEN←EK(xEN);

M P←P1⊕P2· · · ⊕Pm;

if m= 1then

M1←EK(M P⊕EN);

C1←M1⊕xEEN;

returnC1

if m= 2then

M1←EK(M P⊕EN);

P P1←M1⊕P1;P P2←M1⊕EEN⊕P2;

CC1←EK(P P1);CC2←EK(P P2);

M2←EK(CC1⊕CC2⊕EEN);

C1←M2⊕CC1;C2←EN⊕CC2;

returnC1, C2

if m >2then

M1←EK(M P⊕EN);M C←0n;

fori= 1tom

if (i−1>0∧i−1 mod (n+ 1) = 0)

M1←EK(M1);

P Pi←Pi⊕pi(x)M1;

CCi←EK(P Pi);M C←M C⊕CCi;

fori= 1tom

if (i−1>0∧i−1 mod (n+ 1) = 0)

M2←EK(M2);

Ci←CCi⊕pi(x)M2;

returnC1, C2,· · ·, Cm

Algorithm DN

K(C1, C2,· · ·, Cm)

EN←EK(N);EEN←EK(xEN);

M C←C1⊕C2· · · ⊕Cm;

if m= 1then

M2←DK(M C⊕xEEN);

P1←M2⊕EEN;

returnP1

if m= 2then

M2←EK(M C⊕EN⊕EEN);

CC1←M2⊕C1;CC2←M2⊕EN⊕C2;

P P1←DK(CC1);P P2←DK(CC2);

M1←EK(P P1⊕P P2⊕EEN⊕EN);

P1←M1⊕P P1;P2←M1⊕EEN⊕P P2;

returnP1, P2

if m >2then

M2←EK(M C⊕EEN);M P←0n;

fori= 1tom

if (i−1>0∧i−1 mod (n+ 1) = 0)

M2←EK(M2);

CCi←Ci⊕pi(x)M2;

P Pi←DK(CCi);M P←M P⊕P Pi;

fori= 1tom

if (i−1>0∧i−1 mod (n+ 1) = 0)

M1←EK(M1);

Pi←P Pi⊕pi(x)M1;

returnP1, P2,· · ·, Pm

Fig. 1.The MEM Mode

3

Distinguishers against MEM

We can distinguishEK(·,·),DK(·,·) from $(·,·),$(·,·) with overwhelming

advan-tage of 11/2n. The first distinguisher makes one decryption and one encryption

queries. The second distinguisher makes only one encryption.

3.1 Two-query Distinguisher

This distinguisher is similar to the one used in [CS06] to show that MEM is not secure against nonce repeating adversary. The difference is that the one in in [CS06] made two encryption queries with the same nonce and we make one decryption and one encryption queries with the same nonce.

(4)

P1

p1(x)M1

P P1

CC1 p1(x)M2

C1 EK

P2

p2(x)M1

P P2

CC2 p2(x)M2

C2 EK

P3

p3(x)M1

P P3

CC3 p3(x)M2

C3 EK

P4

p4(x)M1

P P4

CC4 p4(x)M2

C4 EK

Fig. 2.Enciphering a four-block messageP1P2P3P4 under MEM. SetM1=EK(P1 P2⊕P3⊕P4⊕EK(N)) andM2=EK(CC1⊕CC2⊕CC3⊕CC4⊕EK(xEK(N))).

1. Make a decryption query (Ns, Cs

1, C2s, C3s, C4s) and get (P1s, P2s, P3s, P4s); 2. Make an encryption query (Nt, Pt

1, P2t, P3t, P4t) and get (C1t, C2t, C3t, C4t), where Ns=Nt, Ps

1 =P1t, P2s=P2t, P3s6=P3t, andP3s⊕P4s=P3t⊕P4t. 3. CalculateX1=p1(x)1(C1s⊕C1t) andX2=p2(x)1(C2s⊕C2t). 4. IfX1=X2, then return 1, else return 0.

When the distinguisher queriesEK(·,·),DK(·,·),

Ms

2 =p1(x)1(CC1s⊕C1s) =p2(x)1(CC2s⊕C2s)

and

Mt

2 =p1(x)1(CC1t⊕C1t) =p2(x)1(CC2t⊕C2t). Notice thatCCs

1=CC1tandCC2s=CC2t, we get that

M2s⊕M2t=p1(x)1(C1s⊕C1t) =p2(x)1(C2s⊕C2t).

So the probability ofX1=X2 is 1.

When the distinguisher queries $(·,·),$(·,·), then Ct

1 and C2t are two inde-pendently random strings. So the probability ofX1=X2 is 1/2n.

From the above analysis, the advantage of the distinguisher is 11/2n.

3.2 One-query Distinguisher

This distinguisher only makes one encryption query. Notice that when the mes-sage length is m = n+ 3 blocks, pn+2(x) = pn+3(x) = 1 +x. We make an encryption query of (N, P1, P2,· · · , Pm+3), whereP1 =P2 =... =Pn+3 = 0n, and get (C1, C2,· · ·, Cn+3). IfCn+2=Cn+3 then return 1, else return 0.

When the distinguisher queriesE(·,·), we always haveCn+2=Cn+3. When

(5)

Acknowledgment

The authors would like to thank Debrup Chakraborty for providing their paper. It’s a great pleasure to discuss your work with you.

References

[BRW04] Mihir Bellare, Phillip Rogaway, and David Wagner. The EAX mode of operation. In Bimal Roy and Willi Meier, editors,Fast Software Encryption 2004, volume 3017 of Lecture Notes in Computer Science, pages 389–407. Springer-Verlag, 2004.

[CS06] Debrup Chakraborty and Palash Sarkar. A new mode of encryption secure against symmetric nonce respecting adversaries, extended version of the FSE’06 paper. Cryptology ePrint Archive, Report 2006/062, 2006. http: //eprint.iacr.org/.

[HR03] Shai Halevi and Phillip Rogaway. A tweakable enciphering mode. In D. Boneh, editor,Advances in Cryptology – CRYPTO 2003, volume 2729 of

Lecture Notes in Computer Science, pages 482–499. Springer-Verlag, 2003. [HR04] Shai Halevi and Phillip Rogaway. A parallelizable enciphering mode. In

Tatsuaki Okamoto, editor,The Cryptographers’ Track at RSA Conference – CT-RSA 2004, volume 2964 ofLecture Notes in Computer Science. Springer-Verlag, 2004.

[Jou03] Antoine Joux. Cryptanalysis of the EMD mode of operation. In L. R. Knudsen, editor, Advances in Cryptology – EUROCRYPT 2003, volume 2656 of Lecture Notes in Computer Science, pages 1–16. Springer-Verlag, 2003.

[KVW04] Tadayoshi Kohno, John Viega, and Doug Whiting. CWC: A high-performance conventional authenticated encryption mode. In Willi Meier Bimal Roy, editor,Fast Software Encryption 2004, volume 3017 ofLecture Notes in Computer Science, pages 408–426. Springer-Verlag, 2004.

[LRW02] Moses Liskov, Ronald L. Rivest, and David Wagner. Tweakable block ci-phers. In M. Yung, editor,Advances in Cryptology – CRYPTO 2002, volume 2442 ofLecture Notes in Computer Science, pages 31–46. Springer-Verlag, 2002.

[MV02] David A. McGrew and John Viega. The security and performance of the galois/counter mode (GCM) of operation. In Anne Canteaut and Ka-paleeswaran Viswanathan, editors,Advances in Cryptology – INDOCRYPT 2004, volume 3348 of Lecture Notes in Computer Science, pages 343–355. Springer-Verlag, 2002.

[RBBK01] Phillip Rogaway, Mihir Bellare, John Black, and Ted Krovetz. OCB: a block-cipher mode of operation for efficient authenticated encryptiona. In

Proceedings of the 8th ACM Conference on Computer and Communications Security, pages 196–205, 2001.

[Rog02] Phillip Rogaway. The EMD mode of operation (tweaked, wide-blocksize, strong PRP), 2002. http://eprint.iacr.org/2002/148.pdf.

(6)

[Rog04b] Phillip Rogaway. Nonce-based symmetric encryption. In Bimal Roy and Willi Meier, editors,Fast Software Encryption 2004, volume 3017 ofLecture Notes in Computer Science, pages 348–359. Springer-Verlag, 2004.

References

Related documents

Aβ, amyloid beta; Aβ42, 42-amino acid fragment of amyloid beta; AD, Alzheimer disease; APP, amyloid precursor protein; CNS, central nervous system; CSF, cerebrospinal fl

In the context of this thesis, whose main objective is Online Trajectory Gen- eration (OTG) for Human-Robot Interactions (HRI), we will have to find models of motion that satisfy

A repulsion of centromeres prior to the time of crossing-over could explain this role of centric pairing in terms of chromosome mechanics, without invoking

Transferarea ş abloanelor de etichete cu P-touch Transfer Express (numai pentru modelul QL-720NW) (numai pentru Windows ® )

Three groups of participants: (a) Mentors of family medicine residents (expert group) (n = 56); (b) Family medicine physicians (intermediate experience group) (n = 17); (c)

Circular permuta- tion at the first zinc-binding site of binuclear RING-like treble clefs is unique to the UBR-box, though a similar permutation is seen in one other mononuclear

Five different Model of RCC building, one with no shear wall and other four models with different position of shear wall which is subjected to earthquake load in zone V has been

The subtelomeric Y’ family of repeated DNA sequences in the yeast Saccharomyces cerevisiae is of unknown origin and function.. Y’s vary in copy number and location