Secured Data Transmission Using RC4 Algorithm: Encrypting and Decrypting Double Byte Data 1 2 3 SAIPRIYA SAMALA , P.NAVITHA , DR

Total Page:16

File Type:pdf, Size:1020Kb

Secured Data Transmission Using RC4 Algorithm: Encrypting and Decrypting Double Byte Data 1 2 3 SAIPRIYA SAMALA , P.NAVITHA , DR ISSN 2319-8885 Vol.03,Issue.27 September-2014, Pages:5415-5418 www.ijsetr.com Secured Data Transmission using RC4 Algorithm: Encrypting and Decrypting Double Byte Data 1 2 3 SAIPRIYA SAMALA , P.NAVITHA , DR. M.GURUNADHA BABU Dept of VLSI System Design, CMRIT, Hyderabad, India, Email: [email protected]. Abstract: Cryptography is a science which deals with hiding the data. For hiding the information encryption is done by using encryption algorithm, to retrieve it back decryption is done by decryption algorithm. Cryptography can be performed on two types of ciphers which are stream cipher and block cipher. In stream cipher transmission is performed either bit by bit or byte by byte. Where as in Block cipher transmission is performed block by block. In this paper we deal with stream cipher; and one of the most popular stream ciphers is the RC4 stream cipher. RC4 stream cipher usually generates one byte per clock cycle. Proposed RC4 algorithm generates two bytes per clock cycle. Encryption is performed by using two keys and two blocks of plain texts. Similarly, decryption is performed by using the two keys and two blocks of cipher texts. Keywords: Cryptography, Decryption, Encryption, Loop Unrolling, Pipelining, RC4, Stream Cipher. I. INTRODUCTION II. RC4 STREAM CIPHER In any communication channel, it is important that the The RC4 stream cipher was designed in 1987 by Ron data being transmitted from the sender to the receiver end Rivest for RSA Data Security. RC4 cipher stream is a reaches the receiver without any change in the data which is variable key-size stream cipher with byte-oriented operations. transmitted. Such communication without any change in the It is based on use of random permutation (PRGA). RC4 was data can be done using the cryptographic techniques. a trade secret by RSA Security until September 1994when Cryptography means to communicate in the presence of a the algorithm was posted on internet on the hacker's cyberpunk. It should also meet the requirements such as remailers list. This algorithm is simple and quite easy to confidentiality, authentication, data integrity and non- explain. It uses a memory location of N=256 bytes repudiation. The theory of cryptography tells what exactly represented as S-box S.A secret key of l bytes represented as these problems are, how to evaluate them, about protocols k is used to scramble this initially used 256 memory location that support to solve them, and how to build protocols in bytes. For encryption and decryption, a single byte S[n] is whose security we can have confidence. The basic issues can generated from S by selecting data in one of the 255 locations be discussed with the process of encryption. Basic problem in in a systematic fashion. As each value of S[n] is generated the field of cryptography is secured communication over an after scrambling, the data in memory locations in S are once insecure channel. Person X wants to send person Y a secret again permuted. message over a communication channel which can be tapped by a cyberpunk. A. Initialization and Scrambling In the beginning, the 256 memory locations are assigned The solution to this problem is private key encryption. In values in a order as s[0]=0, s[1]=1, s[2]=2,s[3]=3…and so on private key encryption: x and y agree on a pair of encryption i.e., s[I]=I. A temporary 256 bytes memory is also generated. and decryption algorithms A and B, with an additional This temporary memory location has a key of K=256 bytes. information K to be kept secret. We refer to K as common If the key is not of 256 bytes and by considering the key to be secret key. The cyberpunk can know the encryption and „keylength‟ bytes, the first number of bytes same as decryption algorithms A and B which are being used, but „keylength‟ are occupied by the key in the temporary cannot know K. When X wants to send Y the clear text or memory location and in the place of remaining bytes the plaintext message m over the insecure communication line, X „keylength‟ is repeated until it reaches I=255 location. This encrypts m by computing the cipher text c = A (K; m) and temporary memory location can be represented as T [I].These sends c to Y. Upon receipt Y decrypts c by computing m = B operations can be mathematically shown as: (K; c). The line-tapper, who does not know K, should not be for I = 0 to 255 able to compute m from c. S [I] = I; T [I] = K [I mod keylength]; Copyright @ 2014 IJSETR. All rights reserved. SAIPRIYA SAMALA, P.NAVITHA, DR. M.GURUNADHA BABU Then T is used to produce initial permutation of S (scrambling). This starts from s [0] and goes till s [255] and each s [I] is swapped with other ith location in S by following the below shown method: j = 0; Because the only operation on S is a swap, the only effect is a permutation. S still contains all the numbers from 0 for I = 0 to 255 through 255 but not necessarily in the same order. do j = (j + S [I] + T [I]) mod 256; Swap (S [I], S[j]); Since the operation performed is only swapping S will all values from 0 to 255 but not necessarily in the same order. B. Pseudo random Stream Generation Once the S is initialized, the input key K is not used anymore. Stream generation starts with S[0] and goes through till S[255], and, for every S[I], swapping S[I] with another byte in S according to a method dictated by the current configuration of S. After S [255] is reached, the process continues, again from S [0] following the same process: I, j = 0; Fig2. Circuit 2 used for calculating j1 and j2 while (true) I = (I + 1) mod 256; C. Swapping j = (j + S [I]) mod 256; The swapping operation mentioned in the algorithm swap Swap (S [I], S[j]); (s[i],s[j]) results in any one of the following eight possible t = (S [I] + S[j]) mod 256; data transfers among the registers of the S-bank, depending k = S[t]; on the possible values of i1, j1, i2, j2. To encrypt XOR the value k with the next byte of plaintext, Table1. to decrypt XOR the value k with the next byte of cipher text. III. PROPOSED METHOD FOR PERFORMING RC4 A. Calculation of i1 and i2 i0 is a memory byte which initially stores the value 0 and is then incremented by 1 and 2 using the same clock pulse applied to two synchronous 8-bit counters. The i1 counter is initially loaded with 00000001 and the counter i2 is initially loaded with 00000010, initial states of these two indices. This is the first round of the KSA of RC4. This will result in increments of odd values 1,3,5…, in the i1 counter and increments of even values 2,4,6…, for i2 counter as required in RC4. This assures that the LSB of i1will always be 1 and that of i2 will always be 0. Fig1. Circuit 1 to calculate i1 and i2 B. Calculation of ji and j2 The values of j1 and j2 can be calculated using a 2-input adder as shown in the below equation. This equation has two conditions as mentioned below: J1=j0+1; Fig3. Circuit 3 for calculating S[k] after pseudo random J2=ji+s1[i2]=j0+s0[i1]+s1[i2] generation. j = (j + S [I] + T [I]) Mod 256; International Journal of Scientific Engineering and Technology Research Volume.03, IssueNo.27, September-2014, Pages: 5415-5418 Secured Data Transmission using RC4 Algorithm: Encrypting and Decrypting Double Byte Data The circuit 5 is used two calculate the value of Z2 after the execution of second PRGA loop. IV. ENCRYPTION The plain text when XORed with key obtained from the RC4 algorithm gives the cipher text. S[i] xor k{i]=C[i] The above equations are used to perform the swap operations. The values of i1,i2,j1 and j2 lead to eight possible data transfers. The transfer and the swapping operations are performed based on the above equations. D. Stream generation The two consecutive values of Z are generated together, for the consecutive plaintext bytes to be encrypted. Assume that the initial values of the variables i,j and S are i0, j0, and S0, respectively. After the first execution of the PRGA loop, these values will be i1, j1, and S1, respectively, and the output byte is Z1, say. Similarly, after the second execution of the PRGA loop, these will be i2, j2, S2, and Z2, respectively. Thus, for the first two loops of execution to complete, the following table is used. Fig6. V. DECRYPTION The cipher text when XORed with the same key used in encryption gives the plain text initially sent from the sender. C[i] xor k[i]=S[i] Fig4. Circuit 4 to calculate Z1 Fig7. The circuit 4 is used for calculating the value of Z after the VI. SIMULATION RESULTS execution of the first loop of PRGA. Fig5. Circuit for calculating Z2. Fig8. International Journal of Scientific Engineering and Technology Research Volume.03, IssueNo.27, September-2014, Pages: 5415-5418 SAIPRIYA SAMALA, P.NAVITHA, DR. M.GURUNADHA BABU [9] P. Hamalainen, M. Hannikainen, T. Hamalainen, and J. Saarinen,“Hardware Implementation of the Improved WEP and RC4 Encryption Algorithms for Wireless Terminals,”Proc. European Signal Processing Conf.,pp.
Recommended publications
  • Cryptanalysis of Sfinks*
    Cryptanalysis of Sfinks? Nicolas T. Courtois Axalto Smart Cards Crypto Research, 36-38 rue de la Princesse, BP 45, F-78430 Louveciennes Cedex, France, [email protected] Abstract. Sfinks is an LFSR-based stream cipher submitted to ECRYPT call for stream ciphers by Braeken, Lano, Preneel et al. The designers of Sfinks do not to include any protection against algebraic attacks. They rely on the so called “Algebraic Immunity”, that relates to the complexity of a simple algebraic attack, and ignores other algebraic attacks. As a result, Sfinks is insecure. Key Words: algebraic cryptanalysis, stream ciphers, nonlinear filters, Boolean functions, solving systems of multivariate equations, fast algebraic attacks on stream ciphers. 1 Introduction Sfinks is a new stream cipher that has been submitted in April 2005 to ECRYPT call for stream cipher proposals, by Braeken, Lano, Mentens, Preneel and Varbauwhede [6]. It is a hardware-oriented stream cipher with associated authentication method (Profile 2A in ECRYPT project). Sfinks is a very simple and elegant stream cipher, built following a very classical formula: a single maximum-period LFSR filtered by a Boolean function. Several large families of ciphers of this type (and even much more complex ones) have been in the recent years, quite badly broken by algebraic attacks, see for exemple [12, 13, 1, 14, 15, 2, 18]. Neverthe- less the specialists of these ciphers counter-attacked by defining and applying the concept of Algebraic Immunity [7] to claim that some designs are “secure”. Unfortunately, as we will see later, the notion of Algebraic Immunity protects against only one simple alge- braic attack and ignores other algebraic attacks.
    [Show full text]
  • Adding MAC Functionality to Edon80
    194 IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.1, January 2007 Adding MAC Functionality to Edon80 Danilo Gligoroski and Svein J. Knapskog “Centre for Quantifiable Quality of Service in Communication Systems”, Norwegian University of Science and Technology, Trondheim, Norway Summary VEST. At the time of writing, it seams that for NLS and In this paper we show how the synchronous stream cipher Phelix some weaknesses have been found [11,12]. Edon80 - proposed as a candidate stream cipher in Profile 2 of Although the eSTREAM project does not accept anymore the eSTREAM project, can be efficiently upgraded to a any tweaks or new submissions, we think that the design synchronous stream cipher with authentication. We are achieving of an efficient authentication techniques as a part of the that by simple addition of two-bit registers into the e- internal definition of the remaining unbroken stream transformers of Edon80 core, an additional 160-bit shift register and by putting additional communication logic between ciphers of Phase 2 of eSTREAM project still is an neighboring e-transformers of the Edon80 pipeline core. This important research challenge. upgrade does not change the produced keystream from Edon80 Edon80 is one of the stream ciphers that has been and we project that in total it will need not more then 1500 gates. proposed for hardware based implementations (PROFILE A previous version of the paper with the same title that has been 2) [13]. Its present design does not contain an presented at the Special Workshop “State of the Art of Stream authentication mechanism by its own.
    [Show full text]
  • Analysis of Lightweight Stream Ciphers
    ANALYSIS OF LIGHTWEIGHT STREAM CIPHERS THÈSE NO 4040 (2008) PRÉSENTÉE LE 18 AVRIL 2008 À LA FACULTÉ INFORMATIQUE ET COMMUNICATIONS LABORATOIRE DE SÉCURITÉ ET DE CRYPTOGRAPHIE PROGRAMME DOCTORAL EN INFORMATIQUE, COMMUNICATIONS ET INFORMATION ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE POUR L'OBTENTION DU GRADE DE DOCTEUR ÈS SCIENCES PAR Simon FISCHER M.Sc. in physics, Université de Berne de nationalité suisse et originaire de Olten (SO) acceptée sur proposition du jury: Prof. M. A. Shokrollahi, président du jury Prof. S. Vaudenay, Dr W. Meier, directeurs de thèse Prof. C. Carlet, rapporteur Prof. A. Lenstra, rapporteur Dr M. Robshaw, rapporteur Suisse 2008 F¨ur Philomena Abstract Stream ciphers are fast cryptographic primitives to provide confidentiality of electronically transmitted data. They can be very suitable in environments with restricted resources, such as mobile devices or embedded systems. Practical examples are cell phones, RFID transponders, smart cards or devices in sensor networks. Besides efficiency, security is the most important property of a stream cipher. In this thesis, we address cryptanalysis of modern lightweight stream ciphers. We derive and improve cryptanalytic methods for dif- ferent building blocks and present dedicated attacks on specific proposals, including some eSTREAM candidates. As a result, we elaborate on the design criteria for the develop- ment of secure and efficient stream ciphers. The best-known building block is the linear feedback shift register (LFSR), which can be combined with a nonlinear Boolean output function. A powerful type of attacks against LFSR-based stream ciphers are the recent algebraic attacks, these exploit the specific structure by deriving low degree equations for recovering the secret key.
    [Show full text]
  • "Analysis and Implementation of RC4 Stream Cipher"
    Analysis and Implementation of RC4 Stream Cipher A thesis presented to Indian Statistical Institute in fulfillment of the thesis requirement for the degree of Doctor of Philosophy in Computer Science by Sourav Sen Gupta under the supervision of Professor Subhamoy Maitra Applied Statistics Unit INDIAN STATISTICAL INSTITUTE Kolkata, West Bengal, India, 2013 To the virtually endless periods of sweet procrastination that kept me sane during the strenuous one-night stands with my thesis. i ii Abstract RC4 has been the most popular stream cipher in the history of symmetric key cryptography. Designed in 1987 by Ron Rivest, RC4 is the most widely deployed commercial stream cipher, having applications in network protocols such as SSL, WEP, WPA and in Microsoft Windows, Apple OCE, Secure SQL, etc. The enigmatic appeal of the cipher has roots in its simple design, which is undoubtedly the simplest for any practical cryptographic algorithm to date. In this thesis, we focus on the analysis and implementation of RC4. For the first time in RC4 literature, we report significant keystream bi- ases depending on the length of RC4 secret key. In the process, we prove two empirical biases that were experimentally reported and used in recent attacks against WEP and WPA by Sepehrdad, Vaudenay and Vuagnoux in EUROCRYPT 2011. In addition to this, we present a conclusive proof for the extended keylength dependent biases in RC4, a follow-up problem to our keylength dependent results, identified and partially solved by Isobe, Ohigashi, Watanabe and Morii in FSE 2013. In a recent result by AlFardan, Bernstein, Paterson, Poettering and Schuldt, to appear in USENIX Security Symposium 2013, the authors ob- served a bias of the first output byte towards 129.
    [Show full text]
  • Developing a Hardware Evaluation Method for SHA-3 Candidates
    Developing a Hardware Evaluation Method for SHA-3 Candidates Luca Henzen1, Pietro Gendotti2, Patrice Guillet2, Enrico Pargaetzi2, Martin Zoller2, and Frank K. Gürkaynak3 1 Integrated Systems Laboratory, ETH Zurich [email protected] 2 Department of Information Technology and Electrical Enginnering, ETH Zurich {gpietro,pguillet,penrico,mzoller}@ee.ethz.ch 3 Microelectronics Designs Center, ETH Zurich [email protected] Abstract. The U.S. National Institute of Standards and Technology encouraged the publication of works that inves- tigate and evaluate the performances of the second round SHA-3 candidates. Besides the hardware characterization of the 14 candidate algorithms, the main goal of this paper is the description of a reliable methodology to efficiently characterize and compare VLSI circuits of cryptographic primitives. We took the opportunity to apply it on the ongoing SHA-3 competition. To this end, we implemented several architectures in a 90 nm CMOS technology, tar- geting high- and moderate-speed constraints separately. Thanks to this analysis, we were able to present a complete benchmark of the achieved post-layout results of the circuits. 1 Introduction In 2007, the U.S. National Institute of Standards and Technology (NIST) started a public competition aiming at the selection of a new standard for cryptographic hashing [9]. Hash functions are cryptographic primitives that generate a sort of digital fingerprint of an arbitrary-length file, following some fundamental principles. Due to their flexibility, hash functions are used in a wide range of communication protocols where they provide data integrity, user authenti- cation and many other security features. The motivation behind the NIST competition has been the growing concern of the security of two widely deployed hash functions MD5 and SHA-1 following a series of successful attacks [1,2,12].
    [Show full text]
  • Hardware Accelerator for Stream Cipher Spritz
    Hardware Accelerator for Stream Cipher Spritz Debjyoti Bhattacharjee and Anupam Chattopadhyay School of Computer Science and Engineering, Nanyang Technological University, Singapore fdebjyoti001, [email protected] Keywords: Stream Cipher, Hardware Accelerator, Spritz. Abstract: RC4, the dominant stream cipher in e-commerce and communication protocols such as, WEP, TLS, is being considered for replacement due to the series of vulnerabilities that have been pointed out in recent past. After a thorough analysis of the possible weaknesses, Spritz, a new stream cipher is proposed to that effect by the author of RC4. The design of Spritz is based on Cryptographic Sponge construction, which permits Spritz to be used in different modes, and therefore, makes it an attractive design choice for security protocols. Initial software performance analysis of Spritz shows that it fares poorly compared to the state-of-the-art hash functions and stream ciphers. In this paper, we extend the analysis to the hardware performance. We propose a fully customized accelerator design for Spritz and identify the highest achievable runtime performance for ASIC and FPGA technology. Our results show that the Spritz accelerator is significantly faster in encryption compared to the software implementation (32:38× speed-up for the SQUEEZE and 64:07× speed-up for the ABSORB function), though fares weakly against hardware implementation of state-of-the-art hash functions and stream ciphers in terms of area-efficiency. 1 Introduction then gained stronghold with applications in different cryptographic primitives [Bertoni et al., 2010,Bertoni et al., 2011], including the standardization of SHA- Spritz is a new RC4-like stream cipher, proposed 3 [sha, 2015].
    [Show full text]
  • Micro Genetic Algorithm (Mga) Group Optimization Methods for Engineers
    How PULP-based Platforms are Helping Security Research HPCA 2018 - Barcelona 9.May.2018 Frank K. Gürkaynak Integrated systems laboratory, ETH Zürich Stefan Mangard Institute of Applied Information Processing and Communications, TU Graz http://pulp-platform.org Our digital world relies on our ability to secure systems . We have to make sure that our data is . Not lost . Manipulated . Or become visible to parties that are not supposed to have access . Therefore we rely on security services such as . Confidentiality . Authentication . Integrity… . But bad guys and problems do not play by the rules . New ideas and attacks to circumvent security services appear daily . Attacks do not always come from places where we expect them . Active research effort is needed to keep ahead of the ‘bad guys’ The entire system needs to be considered for security Here be security Security Module VivoSoC2, Biomedical signal Acquisition SoC, SMIC130, 4.7mm x 4.7mm https://meltdownattack.com/ http://asic.ethz.ch/2016/Vivosoc2.html . Security of the system is not limited to “one part” . Recent attacks have demonstrated this to everyone Current HW only supports security through obscurity . Hardware is a critical for security, we need to ensure it has no holes . Being able to see what is really inside will improve security . An open approach has proven itself in SW Why should HW be any different? . If you really want, you can still ‘obscure’ HW, but open HW gives you a choice! . Many bugs, features with unintentional consequences can hide inside HW . Open HW will allow a larger community to verify building blocks .
    [Show full text]
  • SFINKS: a Synchronous Stream Cipher for Restricted Hardware Environments ?
    SFINKS: A Synchronous Stream Cipher for Restricted Hardware Environments ? An Braeken?? and Joseph Lano? ? ? and Nele Mentens and Bart Preneel and Ingrid Verbauwhede Katholieke Universiteit Leuven Dept. Elect. Eng.-ESAT/SCD-COSIC, Kasteelpark Arenberg 10, 3001 Heverlee, Belgium fan.braeken,joseph.lano,nele.mentens,bart.preneel,[email protected] Abstract. We present SFINKS, a low-cost synchronous stream cipher for hardware applications with an associated authentication mechanism. The stream cipher is based F on a Simple Filter generator, using the INverse function in 216 to generate the Key Stream. The design is based on simple and well-studied concepts, and its security is analyzed with respect to the portfolio of known cryptanalytic attacks for filter generators. 1 Introduction For efficient encryption of data, cryptography mainly uses two types of symmetric algorithms, block ciphers and stream ciphers. In the past decades, block ciphers have become the most widely used technology. This is mainly due to the block cipher standard DES [32] and its successor AES [33]. The current AES is a secure encryption algorithm that offers excellent performance on a variety of hardware and software environments. As block ciphers are often used in a stream cipher mode such as CTR and OFB, stream ciphers may offer equivalent security at a lower cost. The aim of this paper is to propose a low-cost synchronous stream cipher for hardware applications with an associated authentication mechanism. The design we propose is a simple synchronous stream cipher using a memoryless nonlinear filter. We will motivate our choices made for the building blocks in the following sections.
    [Show full text]
  • The First Systematic Hardware Accelerator Design for SOSEMANUK with Optional Serpent and SNOW 2.0 Modes
    Three Snakes in One Hole: The First Systematic Hardware Accelerator Design for SOSEMANUK with Optional Serpent and SNOW 2.0 Modes Goutam Paul Cryptology and Security Research Unit (CSRU), R. C. Bose Centre for Cryptology and Security, Indian Statistical Institute, Kolkata 700 108, India [email protected] and Anupam Chattopadhyay School of Computer Engineering, Nanyang Technological University, Singapore [email protected] Abstract With increasing usage of hardware accelerators in modern heterogeneous System- on-Chips (SoCs), the distinction between hardware and software is no longer rigid. The domain of cryptography is no exception and efficient hardware design of so-called software ciphers are becoming increasingly popular. In this paper, for the first time we propose an efficient hardware accelerator design for SOSEMANUK, one of the fi- nalists of the eSTREAM stream cipher competition in the software category. Since SOSEMANUK combines the design principles of the block cipher Serpent and the stream cipher SNOW 2.0, we make our design flexible to accommodate the option for independent execution of Serpent and SNOW 2.0. In the process, we identify interest- ing design points and explore different levels of optimizations. We perform a detailed experimental evaluation for the performance figures of each design point. The best throughput achieved by the combined design is 67.84 Gbps for SOSEMANUK, 33.92 Gbps for SNOW 2.0 and 2.12 Gbps for Serpent. Our design outperforms all existing hardware (as well as software) designs of Serpent, SNOW 2.0 and SOSEMANUK, along with those of all other eSTREAM candidates. Keywords: Cryptography, Hardware Accelerator, Serpent, SNOW 2.0, SOSEMANUK, Stream cipher implementation.
    [Show full text]
  • Comparison of FPGA-Targeted Hardware Implementations of Estream Stream Cipher Candidates
    Comparison of FPGA-Targeted Hardware Implementations of eSTREAM Stream Cipher Candidates David Hwang, Mark Chaney, Shashi Karanam, Nick Ton, and Kris Gaj Department of Electrical and Computer Engineering George Mason University, Fairfax, Virginia, U.S.A. {dhwang, mchaney, skaranam, nton1, kgaj}@gmu.edu Abstract. This work discusses FPGA hardware implementations of all eSTREAM phase 3 hardware stream cipher candidates (profile 2) and some of their derivatives. The designs are optimized for maximum through- put per unit area as well as minimum area, and targeted for Xilinx Spartan 3 FPGAs. The results have found that the Grain and Trivium families of ciphers have demonstrated relative implementation efficiency compared to the rest of the cipher candidates; Mickey also provided a balance of low area with high throughput per area. 1 Introduction Efficient hardware implementations of stream ciphers are important in both high-performance and low-power applications which require encryption. To this end, in 2004 the ECRYPT stream cipher project (eSTREAM) [1] was launched to identify new stream ciphers for adoption in a variety of systems; the call for profile 2 stream cipher candidates in particular focused on stream ciphers suited toward hardware implementation. Currently in phase 3 of the eSTREAM competition there are eight families of hardware-oriented stream ciphers which remain as candidates: DECIM, Edon80, F-FCSR, Grain, MICKEY, Moustique, Pomaranch, and Trivium. The general characteristics of these ciphers and their variants are shown in Table 1. In this paper we compare the hardware imple- mentations of all hardware-oriented candidates (profile 2) and their variants, targeted toward the Xilinx Spartan 3 family of FPGAs.
    [Show full text]
  • The Estream Project
    The eSTREAM Project Matt Robshaw Orange Labs 11.06.07 Orange Labs ECRYPT An EU Framework VI Network of Excellence > 5 M€ over 4.5 years More than 30 european institutions (academic and industry) ECRYPT activities are divided into Virtual Labs Which in turn are divided into Working Groups General SPEED eSTREAM Assembly Project Executive Strategic Coordinator Mgt Comm. Committee STVL AZTEC PROVILAB VAMPIRE WAVILA WG1 WG2 WG3 WG4 The eSTREAM Project – Matt Robshaw (2) Orange Labs 1 Cryptography (Overview!) Cryptographic algorithms often divided into two classes Symmetric (secret-key) cryptography • Participants using secret-key cryptography share the same key material Asymmetric (public-key) cryptography • Participants using public-key cryptography use different key material Symmetric encryption can be divided into two classes Block ciphers Stream ciphers The eSTREAM Project – Matt Robshaw (3) Orange Labs Stream Ciphers Stream encryption relies on the generation of a "random looking" keystream Encryption itself uses bitwise exclusive-or 0110100111000111001110000111101010101010101 keystream 1110111011101110111011101110111011100000100 plaintext 1000011100101001110101101001010001001010001 ciphertext Stream encryption offers some interesting properties They offer an attractive link with perfect secrecy (Shannon) No data buffering required Attractive error handling and propagation (for some applications) How do we generate keystream ? The eSTREAM Project – Matt Robshaw (4) Orange Labs 2 Stream Ciphers in a Nutshell Stream ciphers
    [Show full text]
  • State Convergence in Bit-Based Stream Ciphers∗
    State convergence in bit-based stream ciphers∗ Sui-Guan Teo, Harry Bartlett, Ali Alhamdan, Leonie Simpson, Kenneth Koon-Ho Wong and Ed Dawson † Institute for Future Environments, Science and Engineering Faculty, Queensland University of Technology 11th February 2013 Abstract Well-designed initialisation and keystream generation processes for stream ciphers should ensure that each key-IV pair generates a distinct keystream. In this paper, we analyse some ciphers where this does not happen due to state convergence occurring either during initialisation, keystream generation or both. We show how state convergence occurs in each case and identify two mechanisms which can cause state convergence. 1 Introduction Modern stream cipher applications use a secret key and a publicly known initialisation vector (IV) to form an initial internal state for the keystream generator, before keystream generation begins. This approach is common in digital communications, where a single communication in frame-based applications can consist of multiple frames. A communication will use a single key for the entire communication and each frame will be encrypted using that key and a distinct IV. For example, a mobile phone conversation is divided into many frames. Each frame in the communication is encrypted separately using the same key and using the frame number as the IV. Given a suitable state size (at least equal to the sum of the key and IV lengths), a good initialisation process should ensure that each key-IV pair generates a distinct keystream. Furthermore, two keystreams which are distinct at the beginning of keystream generation should not converge to the same keystream sequence at a future point in time.
    [Show full text]