Method of encrypting the data transmission in a data processing unit, particularly a smart card

Information

  • Patent Application
  • 20030048898
  • Publication Number
    20030048898
  • Date Filed
    June 17, 2002
    22 years ago
  • Date Published
    March 13, 2003
    21 years ago
Abstract
The invention relates to a method of encrypting the data transmission in a data processing unit such as particularly a smart card. While optimally utilizing the working memory, the method elucidated hereinbefore allows computation of the multiplicative inverse value u−1(mod v) of an integer u modulo v which is required for performing an RSA algorithm. A Euclidic algorithm for computing the greatest common divisor of u and v is performed with two variables a, b, which are initialized with u and v. In parallel, values ax, ay, bx, by are computed in each iteration step, which values always comply with the equations
Description


[0001] The invention relates to a method of computing the modular inverse values u−1 (mod v) and v−1 (mod u) of two predetermined positive integers u and v for the implementation of a cryptographic method in data processing systems with a small working memory. The invention also relates to a method of encrypting the data transmission in a data processing unit, particularly a smart card, by means of the RSA algorithm, and to a data processing unit, particularly a smart card, for performing said method.


[0002] With the increasing use of electronic data processing in all ways of life, the protection of the processed data from abuse becomes increasingly important. This particularly also applies to data processing units in the form of smart cards on which these often security-critical data such as credit accounts, personal data, health data and the like are stored.


[0003] Asymmetrical cryptographic methods which work with a private key and a public key are particularly suitable for encrypting the data transmission. A widely used method is the RSA algorithm by Rivest, Shamir and Adleman of 1977 (cf. Rechenberg, Pomberger: Informatik-Handbuch, 2nd Edition, Hanser Verlag Munich, Vienna (1999) chapter 3.4). In this method, a subscriber selects two large prime numbers p and q for generating a pair of keys and computes therefrom the modulus n=p·q as well as the value Φ =(p−1)·(q−1). Furthermore, he selects a random number e<n, which cannot be divided by Φ and computes the d<n with d·e mod(Φ)=1. The public key is then the pair (e, n) and the private key is d.


[0004] A message m<n to be encrypted, represented as a number m, can now be modulo-n raised to a higher power by its transmitter with the aid of the public key e of the receiver so as to generate the encrypted message c: c=me mod(n). The receiver can generate the clear text again: m=cd mod(n) by exponentiating the cipher text c with his private key.


[0005] The security of the RSA algorithm is based on the difficulty of dividing the modulus n in the two prime numbers p and q which are only known to the owner of the private key. This difficulty increases with the length of the prime factors p and q for which lengths of between 512 and 1024 bits are currently used.


[0006] The processing of such long prime factors presents a problem, particularly for data processing systems with limited working memories. For this reason, the RSA algorithm for smart cards is currently typically limited to a key length of 512 to about 700 bits.


[0007] It is an object of the invention to provide a method and a data processing unit with which a secure encryption of the data transmission is possible, also when only a small working memory is available.


[0008] This object is achieved by means of a method defined in claims 1, 2 and 4 and a data processing unit defined in claim 5. Advantageous embodiments are defined in the dependent claims.






[0009] The invention relates to a method of computing the modular inverse values u−1(mod v) and v−1(mod u) of two predetermined positive integers u and v. The inverse value of an integer u modulo of another integer v is, if it exists, defined as that number x :=u−1(mod v) for which it holds that: u x(mod v)=1. In the implementation of an RSA algorithm, the computation of the modular inverse value is required to compute the private key d from the random number e. Based on the value of the integers u, v involved, which correspond to the prime factors p and q, this method requires a considerable working memory capacity. In data processing systems with small working memories, this requirement is finally the limiting factor for the value of the key which can be used in the RSA algorithm. The method is characterized by the following steps:


[0010] a) definition of the values


[0011] a0:=u,


[0012] b0:=v,


[0013] ax0:=1,


[0014] ay0:=0,


[0015] bx0:=0,


[0016] by0:=1.


[0017] b) successive computation for k 0; 1; 2; 3; . . . to kmax of


[0018] b1) if ak<bk: ak+1:=ak


[0019] bk+1:=bk−ak


[0020] axk+1:=axk


[0021] ayk+1:=ayk


[0022] bxk+1:=bxk+axk


[0023] byk+1:=byk+ayk


[0024] b2) if ak≧bk: ak+1:=ak−bk


[0025] bk+1:=bk


[0026] axk+1:=axk+bxk


[0027] ayk+1:=ayk+byk


[0028] bxk+1:=bxk


[0029] byk+1:=byk


[0030] wherein the computation of the sequences at which the index kmax is ended is akmax=0


[0031] c) if bkmax=1, compute the searched modular inverse values to


[0032] u−1(mod v)=−bxkmax


[0033] v−1(mod u)=bykmax


[0034] As compared with the method hitherto known (described, for example, by Bruce Schneier, “Applied Cryptography”, 2nd Edition 1996, page 247), the above-mentioned method has the advantage that it requires a considerably reduced working memory capacity. This is caused by the fact that the memory locations required for the variables ak and bk decrease on average to the same extent as the required memory location for the variables axk, ayk, bxk and byk increases because in each iteration step b) the mutually opposite operations of addition and subtraction are performed on the two different types of variables. In the method, the values ak and bk are manipulated in accordance with the known Euclidic algorithm for computing the greatest common divisor of u and v. The residual values are manipulated in such a way that the following equations always apply:




a


k


=u·ax


k


−v·ay


k




−bk=u·bxk−v·byk


[0035] The invention further relates to a second method of computing the modular inverse values u−1(mod v) and v−1(mod u) of two predetermined positive integers u and v for the implementation of a cryptographic method in data processing systems with a small working memory. The method is distinguished from the above-mentioned method in that at least one of the two numbers u and/or v is odd. It is characterized by the following steps:


[0036] a) definition of the values


[0037] a0:=u,


[0038] b0:=v,


[0039] ax0:=1,


[0040] ay0:=0,


[0041] bx0:=0,


[0042] by0:=1,


[0043] z0:=0.


[0044] b) successive computation for k=0; 1; 2; 3; . . . to kmax of:


[0045] αk with: ak=2αk a′k and a′k is odd


[0046] βk with: bk=2βk b′k and b′k is odd


[0047] zk+1:=zkk+βk


[0048] and


[0049] b1) if a′k≧b′k: ak


[0050] bk+1:=b′k−a′k


[0051] axk+1:=2βkaxk


[0052] ayk+1:=2βkayk


[0053] bxk+1:=2αkbxk°2βkaxk


[0054] byk+1:=2αkbyk+2βkayk


[0055] b2) if a′k≧b′k: ak+1:=a′k−b′k


[0056] bk+1:=b′k


[0057] axk+1:=2βkaxk+2αkbxk


[0058] ayk+1:=2βk ayk+2αkbyk


[0059] bxk+1:=2αkbxk


[0060] bxk+1:=2αkbyk


[0061] wherein the computation of the sequences at which the index kmax is ended is ak max=0


[0062] c) if bkmax=1, successively compute k=kmax to (kmax+zkmax−1):
1bxk+1{:=bxk/2ifbxkandbykareeven(bxk+v)/2elsebyk+1{:=byk/2ifbxkandbykareeven(byk+u)/2else


[0063] d) compute the searched modular inverse values of


[0064] u−1(mod v)=−bxkmax+zkmax


[0065] v−1(mod u)=bykmax+zkmax


[0066] In addition to the first method elucidated above, this method performs an extraction of the factor 2 whenever it occurs in intermediate values. On condition that at least one of the two numbers u, v is odd, a more rapid convergence of the algorithm can thereby be achieved. Also in this algorithm, opposite operations are performed in parallel. For example, when dividing a value ak or bk by 2, the values axk, ayk, bxk and byk are multiplied in parallel by the factor 2 so that, on average, the overall memory location required for storing these variables remains approximately equal.


[0067] The methods of the type described above can be particularly performed by a data processing unit, in which the available working memory is dynamically adapted to the memory location required for the current value of the variables ak, bk , axk, bxk, ayk and byk. This renders it possible to utilize the limited working memory to an optimal extent because the part of the working memory required in a given stage of the algorithm is allocated to each variable, while a part of the values steadily requires a smaller memory location in the course of the process and the rest of the values steadily requires a larger memory location. The method may be particularly implemented in the form of a computer program run on the data processing unit. Such a program is preferably stored in non-volatile memories (ROM, EEPROM, etc.) or on memory media (hard disk, diskette, CD, etc.).


[0068] The invention further relates to a method of encrypting the data transmission in a data processing unit, particularly a smart card, by means of the RSA algorithm. The method is characterized in that a private key is computed by means of a method of the type described above. Since the methods mentioned above utilize the working memory better than current methods, the modular inverse values of comparatively large numbers, for example prime numbers having a length of 1024 bits can be computed by means of these methods. This thus allows the generation and use of correspondingly long keys in the RSA algorithm, which enhances its security accordingly.


[0069] The invention further relates to a data processing unit, particularly a smart card, which is adapted to perform a method of the type described above. Such a data processing unit thus preferably includes a non-volatile memory for storing the program code which is implemented in a method of the type described, and a working memory for storing the variables manipulated in the method.


[0070] The invention will hereinafter be elucidated by way of example with reference to program listings.


[0071] For better understanding, the first listing shows the known binary Euclidic algorithm for computing the greatest common divisor (gcd) of two numbers u, v. It is assumed that at least one of the two numbers u, v is odd, which allows the variables a and b to be possibly divided by 2 if these might meanwhile assume even values.
11%Binary Euclidean Algorithm2%Input:3%u, v: positive integers with gcd(gcd(u,v),2) = 1.4%Computes:5%b = gcd(u,v)67a := u8b := v910while a <> O11while (a mod 2) = 012a := a/213end1415while (b mod 2) = 016b := b/217end1819if a < b20b := b−a21else22a := a−b23end24end


[0072] The next second listing shows a program for realizing the method according to the invention for computing the modular inverse values:
21%Extended Binary Euclidean Algorithm2%Input:3%u,v: positive integers with gcd(gcd(u,v),2) = 1.4%5%Computes:6%−bx = rcp(u,v) = (u{circumflex over ( )}(−1))mod v(if gcd(u,v)=1)7%by = rcp(v,u) = (v{circumflex over ( )}(−1))mod u(if gcd(u,v)=1)8%b = gcd(u,v)9%10%The algorithm bases on the following set of11%equations, which are fulfilled at each program12%step below that is marked with (*):13%a*(2{circumflex over ( )}exp) = u*ax − v*ay14%−b*(2{circumflex over ( )}exp) = u*bx − v*by1516a := u17b := v18ax := 119ay := O20bx := O21by := 122exp := O232425while a <> 026(*)2728while (a mod 2) = 029exp := exp+130a := a/2% a is even at this point !31bx := bx*232by := by*233(*)34end353637while (b mod 2) = 038exp := exp+139b := b/2% b is even at this point !40ax := ax*241ay := ay*242(*)43end444546if a < b47b := b−a48bx := bx+ax49by := by+ay50else51a := a−b52ax := ax+bx53ay := ay+by54end55(*)5657end5859%Intermediate results at this point:60%a = 061%b = gcd(u,v)626364while exp > 065exp := exp−16667if ((bx mod 2) <> O) or ((by mod 2) <> 0)68bx := bx+v69by := by+u70end7172bx := bx/2% bx is even at this point !73by := by/2% by is even at this point !74(*)7576end


[0073] In the second listing, the binary Euclidic algorithm represented above is extended by the computation of the modular or also multiplicative inverse values.


[0074] This “Extended Binary Euclidic Algorithm” requires six further run variables a, b, ax, ay, bx, by stored in the working memory, in addition to two values u, v (which may be stored in the EEPROM). For the sake of simplicity it is assumed that a and b are of the same order or word length L. All of the six run variables are principally present in the same order as u, v, with which in a first set-up the required working memory location would be 6*L (similarly as in existing implementations).


[0075] The invention is applied here and reduces the required memory location to 4*L due to a changed course of the algorithm. In the initialization phase for the run variables (lines 16 to 21) the variables a, b are applied in their full word length of L, while for ax, ay, bx, by only 1 bit is required. The initially required working memory capacity thereby results in L*2+4 bits.


[0076] During the iteration loop (lines 25 to 57), complementary operations are exclusively performed with the groups a, b and ax, ay, bx, by. When group a, b is divided by 2, the group ax, ay, bx, by is simultaneously multiplied by 2 (lines 29-32 and 38-41, respectively). When a subtraction with a, b is performed, an addition with ax, ay, bx, by is performed simultaneously (lines 47-49 and 51-53, respectively). As a result, the required length of the run variables a, b decreases to an equal extent on average as the required length of the variables ax, ay, bx, by increases. The overall required working memory capacity thereby increases continuously.


[0077] After the end of the iteration loop, the result is a=0 and b=gcd(u,v). For the interesting cases, the result is b=1. If gdc (u, v)>1, there is usually no multiplicative inverse value. The required working memory capacity is L*4+2 bits at this instant.


[0078] The run variables ax, ay are no longer used subsequently. In the next loop, in which the lengths of the working variables bx, by do not change, the required working memory location is thus L*2 bits.


[0079] Considering the overall algorithm, the required working memory capacity is thus always smaller than or equal to L*4+2 bits. To provide the possibility of “growth” or “shrinkage” of the run variables in the memory, an intelligent memory management is necessary, which continuously tests the relevant variables for imminent overflows (ax, ay, bx, by) or tests zeroes (a, b) and possibly performs a re-organization by way of shifts in the working memory.


[0080] While optimally utilizing the working memory, the method elucidated hereinbefore thus allows computation of the multiplicative inverse value u−1 (mod v) of an integer u modulo v which is required for performing an RSA algorithm. A Euclidic algorithm for computing the greatest common divisor of u and v is performed with two variables a, b, which are initialized with u and v. In parallel, values ax, ay, bx, by are computed in each iteration step, which values always comply with the equations


a=u·ax−v·ay


−b=u·bx−v·by


[0081] At the end of the algorithm the searched multiplicative inverse value is:


u−1(mod v)=−bx.

Claims
  • 1. A method of computing the modular inverse values u−1 (mod v) and v−1 (mod u) of two predetermined positive integers u and v for the implementation of a cryptographic method in data processing systems with a small work memory, the method comprising the steps of: a) definition of the values a0:=u, b0:=v, ax0:=1, ay0:=0, bx0:=0, by0:=1, b) successive computation for k=0; 1; 2; 3; . . . to kmax of: b1) if a′k<bk: ak+1:=ak bk+1:=bk−ak axk+1:=axk ayk+1:=ayk bxk+1:=bxk+axk byk+1:=byk+ayk b2) if ak≧bk: ak+1:=ak−bk bk+1:=bk axk+1:=axk+bxk ayk+1:=ayk+byk bxk+1:=bxk byk+1:=byk wherein the computation of the sequences at which the index kmax is ended is akmax=0 c) if bkmax=1, compute the searched modular inverse values to u−1(mod v)=−bxkmax v−1(mod u)=bykmax .
  • 2. A method of computing the modular inverse values u−1(mod v) and v−1(mod u) of two predetermined positive integers u and v, in which u and/or v is odd, for the implementation of a cryptographic method in data processing systems with a small working memory, the method comprising the steps of: a) definition of the values a0:=u, b0:=v, ax0:=1, ay0:=0, bx0:=0, by0:=1, z0:=0. b) successive computation for k=0; 1; 2; 3; . . . to kmax of: αk with: ak=2αk a′k and a′k is odd βk with: bk=2βk b′k and b′k is odd zk+1:=zk+αk+βk and b1) if a′k≧b′k: ak bk+1:=b′k−a′k axk+1:=2βkaxk ayk+1:=2βkayk bxk+1:=2αkbxk°2βkaxk byk+1:=2αkbyk+2βkayk b2) if a′k≧b′k: ak+1:=a′k−b′k bk+1:=b′k axk+1:=2βkaxk+2αkbxk ayk+1:=2βk ayk+2αkbyk bxk+1:=2αkbxk bxk+1:=2αkbyk wherein the computation of the sequences at which the index kmax is ended is akmax=0 c) if bkmax=1, successively compute k=kmax to (kmax+xkmax−1): bxk+1{:=bxk/2 if bxk and byk are even (bxk+v)/2 else byk+1{:=byk/2 if bxk and byk are even (byk+u)/2 else d) compute the searched modular inverse values of u−1(mod v)=−bxkmax+zkmax v−1(mod u)=bykmax+zkmax.
  • 3. A method as claimed in claim 1 or 2, characterized in that the method is performed by a data processing unit in which the division of the available working memory is dynamically adapted to the required memory location of the variables (ak, bk , axk, bxk, ayk, byk).
  • 4. A method of encrypting the data transmission in a data processing unit, particularly a smart card, by means of the RSA algorithm, characterized in that a private key is computed by means of a method as claimed in any one of claims 1 to 3.
  • 5. A data processing unit, particularly a smart card, characterized in that it is adapted to perform a method as claimed in any one of claims 1 to 4.
Priority Claims (1)
Number Date Country Kind
10129643.6 Jun 2001 DE