A Java implementation of the Elliptic Curve Integrated Encryption Scheme
|
|
|
- Lily Hardy
- 9 years ago
- Views:
Transcription
1 A Java implementation of the Elliptic Curve Integrated Encryption Scheme V. Gayoso Martínez 1, L. Hernández Encinas 1, and C. Sánchez Ávila 2 1 Department of Information Processing and Coding Institute of Applied Physics, CSIC, C/ Serrano 144, Madrid, Spain {victor.gayoso,luis}@iec.csic.es Tel. (+34) , Fax (+34) Department of Applied Mathematics to Information Technologies Polytechnic University, Avda. Complutense 30, Madrid, Spain [email protected] Tel. (+34) , Fax (+34) Abstract Elliptic Curve Cryptography (ECC) is a branch of Cryptography that can be used for encrypting data, generating digital signatures or exchanging keying material during the initial phases of a secure communication. Regarding encryption, the best-known scheme based on ECC is the Elliptic Curve Integrated Encryption Scheme (ECIES). A Java implementation of ECIES is presented in this paper, showing all the options associated to the encryption scheme that can be configured by the user. level provided by a symmetric encryption algorithm using a key of n bits. Keywords: ECIES, elliptic curves, encryption, Java implementation, public key cryptography. 1. Introduction Since the development of public key cryptography by Diffie and Hellman in 1976 ([7]), several cryptosystems have been published. In particular, Miller ([14]) and Koblitz ([11]) proposed in 1985 a cryptosystem whose security relies on the Elliptic Curve Discrete Logarithm Problem (ECDLP). So far, no algorithm is known that solves the ECDLP in an efficient way, and some authors consider ([6] and [11]) that this mathematical problem is even more difficult to solve than other mathematical problems (e.g. the Integer Factorization Problem or the Discrete Logarithm Problem) which are used in other cryptosystems. This is the reason why the key length in ECC is significantly smaller than in other cryptosystems as RSA, as it can be observed in Figure 1, which presents a comparison of key lengths associated to the same cryptographic strength for RSA and ECC ([8] and [15]), where the cryptographic strength is interpreted as the security Figure 1. Key length comparison An elliptic curve E over the finite field (or Galois Field) F is defined by the following equation, known as the Weierstrass equation ([16]): E : y 2 + a 1 xy + a 3 y = x 3 + a 2 x 2 + a 4 x + a 6, (1) where a 1,a 2,a 3,a 4,a 6 F and 0, being the discriminant of the curve E. Condition 0 assures that the curve is smooth, i.e., there are no curve points with two or more different tangent lines. In practice, instead of the Weierstrass equation, simplified versions depending on the characteristic of the finite field F are used. When the characteristic of the field F is a prime number, p, other than 2 or 3, the finite field (which is
2 represented as GF(p) or F p ) is said to be a prime finite field ([13]). If this is the case, the simplified equation is y 2 = x 3 + ax + b. (2) If the characteristic of the finite field F is 2, then the finite field (represented as GF(2 m ) or F 2 m) is a binary finite field. The resulting equation in this case is y 2 + xy = x 3 + ax 2 + b. (3) ECIES is an integrated encryption scheme based on elliptic curves that includes public key operations, encryption algorithms, authentication codes and hash computations. More precisely, ECIES is the generic term used to identify a set of slightly different encryption schemes based on the papers of Mihir Bellare, Philip Rogaway, and Michel Abdalla ([1] and [2]), who developed the encryption scheme DHIES (Diffie Hellman Integrated Encryption Scheme) which represents the kernel of ECIES. For the sake of simplicity, we will refer to those implementations derived from DHIES using the term ECIES for all of them. Over the years, ECIES has been included in several standards, and currently it can be found in the documents ANSI X9.63 ([4]), IEEE 1363a ([9]), ISO/IEC ([10]), and in some deliverables (e.g., [17] and [19]) from the Standards for Efficient Cryptography Group (SECG). Figure 2 presents a graphic description of the ECIES encryption process, including the elements and functions involved in the procedure. The steps that must be taken in order to complete the encryption of a clear message are: 1) The sender must create a pair of temporary keys. The temporary private key will be denoted as u, and the temporary public key as U. 2) The sender will use the key agreement function, KA, in order to create a shared secret value, which is the product of the sender s temporary private key and the recipient s public key, V. 3) The sender will take the shared secret value (and optionally other parameters) as input data for the key derivation function, denoted as KDF. The output of this function is the concatenation of the encryption key, k ENC, and the MAC key, k MAC. 4) The sender will encrypt the clear message, m, using the ENC symmetric algorithm and the encryption key k ENC. The encrypted message will be represented as c. 5) Taking the encrypted message and the MAC key (and optionally other parameters), the sender will use the selected MAC function in order to produce a tag. 6) Finally, the sender will take the temporary public key, the encrypted message and the tag, and will send the cryptogram consisting of those three concatenated elements, U c tag, to the recipient of the message. To the extent of our knowledge, there is no ECIES software implementation that offers the possibility to set up all the different options and functionalities that must be selected by the user following the recommendations of the most relevant standards. In this paper, we present a Java ECIES implementation where the number of combinations of parameters and functions is certainly high, with the aim to test this encryption scheme and be able to try the different combinations that could be relevant in different deployments. The rest of this paper is organized in the following way: In Section 2 we present a Java implementation of ECIES developed for PC platforms, the security of ECIES is commented in Section 3, an example of this implementation is included in Section 4 and, finally, Section 5 contains our conclusions. 2. A Java PC implementation of ECIES The ECIES implementation presented in this contribution is composed of a menu bar and four panels, as it can be seen in Figure 3. The menu bar includes the following items: Program: The options belonging to this menu entry are Look & Field (which allows the user to select either the Nimbus or the Windows graphical themes), Help (an HTML file with a comprehensive description of the program), About (basic information about the software version and the authors), and Exit. Mode: This menu option allows the user to choose among the Standard and the Advanced items that represent a different display view. In the Standard view, the Configuration panel and the Profiles and Test menu options are hidden, as in this view a fixed set of parameters for the encryption and decryption processes is used, whereas in the Advanced view those panels and menu options are available to the user. Profiles: This option includes frequently used sets of parameters (e.g. ISO/IEC and SECG typical configurations). Test: The selection of one of the options that belong to this menu entry loads a fixed set of parameters and information corresponding to sev-
3 Figure 2. ECIES functional diagram. Figure 3. Menu bar and panels of the ECIES software. eral test cases included in ISO/IEC ([10]) and SECG GEC 2 ([17]). Curves: By means of this option, the user can load the parameters of several elliptic curves defined over F p or F 2 m. These curves have been proposed and published by ANSI ([3]), Brainpool ([5]), NIST ([15]) and SECG ([18]). Tools: In this menu entry several tools are included, where the most important one is the generator of key pairs that are stored by the program with a proper format as local files. Field: This menu element allows to work with either the finite field F p or F 2 m, using the switching option GF(p)/GF(2ˆm). The four panels (Configuration, Parameters, Encryption, and Decryption) are described in detail in the next sections Configuration panel Figure 4 presents the elements of this panel. The list of options available in this version of the software for each element is the following: Hash function: SHA-1, SHA-256, SHA-384, and SHA-512. KDF function: KDF1 and ANSI. MAC function: HMAC-SHA-1-160, HMAC- SHA , HMAC-SHA , and HMAC-SHA Encryption function: XOR, AES in CBC and ECB modes, both with PKCS#5 padding, and 3DES in CBC mode with either PKCS#5 padding or without padding. MAC key length in bytes. Encryption key length in bytes. Option to include the temporary public key of the sender as an input to the KDF function. Selection of the first coordinate of the shared secret or its SHA-1 hash value as an input to the
4 Figure 4. Configuration panel. KDF function. Interpretation of the KDF function output, which can be either k MAC k ENC or k ENC k MAC. Binary representation of the elliptic curve points (compressed or uncompressed) Parameters panel The Parameters panel includes the values related to the elliptic curve that must be initialized in order to be able to perform the encryption/decryption procedure. Depending on the type of finite field selected, this panel presents a different set of parameters. If the option GF(p) is selected (i.e. the user decides to work with prime finite fields), the elements that are included in the panel represented by the left image in Figure 5 are the following: p: Prime number characterizing the finite field F p = {0,1,2,..., p 1}. a, b: Elements of the field F p that define the elliptic curve whose equation is given by (2). Gx, Gy: Coordinates of G, which is the point of the curve that will be used as a generator of the points representing public keys, where G = (G x,g y ) and G x,g y F p. n: Prime number whose value represents the order of the point G. h: Cofactor of the curve which is computed as h = #E(F p )/n. u, v: Sender s temporary private key and receiver s permanent private key, respectively, with u,v F p. Ux, Uy: Coordinates of the sender s temporary public key, where U = (U x,u y ) and U x,u y F p. Vx, Vy: Coordinates of the receiver s permanent public key, where V = (V x,v y ) and V x,v y F p. If the selected option is GF(2ˆm), then the elements included in the panel (and shown in the right image in Figure 5) are: m: Exponent that characterizes the finite field F 2 m. k1, k2, k3: Exponents of the irreducible polynomial f (x) = x m + x k 3 + x k 2 + x k used in the operations with polynomial basis. a, b: Elements of the field F 2 m that define the elliptic curve specified by equation (3). Gx, Gy: Coordinates of the generator G, where G x,g y F 2 m. n: Order of the point G. h: Cofactor of the curve. u, v: Sender s temporary private key and receiver s permanent private key, where u,v F 2 m. Ux, Uy: Coordinates of the sender s temporary public key, where U x,u y F 2 m. Vx, Vy: Coordinates of the receiver s permanent public key, where V x,v y F 2 m. Independently of the considered finite field, this panel includes the following elements: Format: Option to present the data strings in either hexadecimal or decimal format. Information: Output of the process. Generate: Button that allows the user to compute the coordinates of both points U and V using the generator and the values u and v. Delete: Button for erasing the information of this panel.
5 Figure 5. Parameters panel Encryption panel The Encryption panel (left image in Figure 6) includes the following elements needed to compute the cryptogram corresponding to a given message: Target public key: Receiver s permanent public key. If the user clicks on the Text option, the Parameters panel will be activated so the user can enter the recipient s public key data. On the other hand, if the user clicks on the File option, the user will be prompted to select the file storing the certificate that contains the public key. Plaintext: Message that the sender wants to transmit to the receiver. The message can be entered either manually or uploaded from a file. Once the message is typed or uploaded, it is shown in the corresponding window. Tag input: Additional data that is optionally used as input in the MAC function. Cryptogram: Output of the encryption process, consisting of the concatenation U c tag, where U is the sender s temporary public key, c is the message encrypted with the chosen symmetric encryption algorithm, and tag is the output of the MAC function. Information: Data referred to the output of the encryption process. The information related to the plaintext and the tag can be displayed (in their respective text boxes) either as regular ASCII text or in hexadecimal format. In comparison, the format options related to the cryptogram are Base64 and hexadecimal Decryption panel The Decryption panel (right image in Figure 6) includes the following elements needed for the recovery of a plaintext from a cryptogram: Target s private key: Receiver s permanent private key. If the user clicks on the Text option, the Parameters panel will be activated so the user can enter manually his private key data. Besides, if the user clicks on the File option, the private key information will be recovered from a file. Cryptogram: Data received from the sender, representing the concatenation of elements U c tag. Plaintext: Original message that the sender tries to transmit to the receiver. Tag: Optional data that is used as input in the MAC function. Information: Data referred to the output of the decryption process. The data presented in the text boxes related to the plaintext and the tag can be displayed either as regular
6 Figure 6. Encryption and decryption panels. ASCII text or in hexadecimal format, while the display options for to the cryptogram text box are Base64 and hexadecimal. 3. Attacks and security recommendations As described in [12], the known attacks on ECIES can be classified as follows: Benign and malign malleability attacks. Small subgroup attacks. Subexponential attacks with supersingular and anomalous curves. Besides, when implementing ECIES, it is necessary to consider the security implications of decisions such as the usage of the compressed format, the keying material interpretation, the type and number of the optional parameters fed to the KDF and MAC functions, the dynamic selection of parameters for the same public key, etc. Accordingly to [12], the configuration (functions and parameters) of ECIES used in the example described in Section 4 ensures that no currently known attack can be performed on this implementation of ECIES. 4. Example Figure 6 provides an encryption and decryption example, where the relevant elements for both processes are the following: Target s public key (in encryption): Retrieved from the file SECG 160 Fp.pub. Plaintext (in encryption): Obtained from the file Treasure Island intro.txt, whose content can be seen in the plaintext text box of the left image in ASCII format. Tag input (both in decryption and decryption): Text consisting in the sentence Beginning of Chapter 1, represented as ASCII text in the left image and in hexadecimal format in the right image of the Figure 6. Cryptogram (in encryption): File where the output of the encryption process is stored. In this case, the file is Encrypted Treasure Island.bin, and the content can be seen in the cryptogram text box of the left image in Base64 format. Target s private key (in decryption): Uploaded from the file SECG 160 Fp.pri. Cryptogram (in decryption): Obtained from the file Encrypted Treasure Island.bin, whose content can be seen in the cryptogram text box of the right image in hexadecimal format. Plaintext (in decryption): File where the output of the decryption process is stored. In this case, the file name is Clear intro.txt, and the
7 content can be seen is the plaintext box of the right image in hexadecimal format. The combination of parameters used in this encryption/decryption process (hash function, etc.) is presented in Figure 4. The public and private keys (defined in the example over a prime field F p ), and the rest of data elements related to the elliptic curve that are necessary in the computations, are shown in the left image of Figure Conclusions As we have commented during this contribution, ECIES is an encryption scheme whose implementation details vary depending on the standard where it is included. The nature and number of differences prevent a developer from building a software implementation compatible with all the relevant security standards, so the designer must take some decisions based on the availability and efficiency of the specific functions included in the target platform. We have developed a Java encryption software that can be used to test different parameter combinations and decide which is the best one in a particular deployment scenario of the ECIES encryption scheme. Performance tests can be conducted by any third party using this tool in order to determine the proper finite field, key length, KDF function, etc. Additionally, our ECIES software can be used to check that a certain implementation adjusts to one or several of the standards mentioned in this contribution. Acknowledgements. This work has been partially supported by Ministerio de Ciencia e Innovación (Spain) under the grant TEC C04-02 and Ministerio de Industria, Turismo y Comercio (Spain), in collaboration with CDTI and Telefónica I+D under the project Segur@ CENIT The authors would like to thank the anonymous reviewers for their helpful comments. References [1] M. Abdalla, M. Bellare, P. Rogaway, DHIES: An Encryption Scheme Based on the Diffie-Hellman Problem, Contribution to IEEE P1363a, 1998, edu/users/mihir/papers/dhaes.pdf. [2] M. Abdalla, M. Bellare, P. Rogaway, The oracle Diffie-Hellman assumptions and an analysis of DHIES, Lecture Notes in Comput. Sci (2001), [3] American National Standards Institute, Public Key Cryptography for the Financial Services Industry: The Elliptic Curve Digital Signature Algorithm (ECDSA), [4] American National Standards Institute, Public Key Cryptography for the Financial Services Industry: Key Agreement and Key Transport Using Elliptic Curve Cryptography, [5] Brainpool, ECC Brainpool Standard Curves and Curve Generation, 2005, download/domain-parameters.pdf. [6] Bundesamt für Sicherheit in der Informationstechnik, Elliptic Curve Cryptography, 2009, bund.de/cln 183/EN/Home/home node.html. [7] W. Diffie, M.E. Hellman, New directions in cryptography, IEEE Trans. Inform. Theory 22 (1976), [8] D. Hankerson, A. J. Menezes, S. Vanstone, Guide to Elliptic Curve Cryptography, Springer-Verlag, New York, NY, USA, [9] Institute of Electrical and Electronics Engineers, Standard Specifications for Public Key Cryptography - Amendment 1: Additional Techniques, [10] International Organization for Standardization / International Electrotechnical Commission, Information Technology Security Techniques Encryption Algorithms Part 2: Asymmetric Ciphers, [11] N. Koblitz, Elliptic curve cryptosystems, Math. Comp. 48 (1987), [12] V. Gayoso Martínez, L. Hernández Encinas, C. Sánchez Ávila, Security and practical considerations when implementing the Elliptic Curve Integrated Encryption Scheme, preprint, [13] A. J. Menezes, Elliptic Curve Public Key Cryptosystems, Kluwer Academic Publishers, Boston, MA, USA, [14] V. S. Miller, Use of elliptic curves in cryptography, Lecture Notes in Comput. Sci. 218 (1986), [15] National Institute of Standards and Technology, Digital Signature Standard (DSS), [16] J. H. Silverman, The Arithmetic of Elliptic Curves, volume 106 of Graduate texts in Mathematics, Springer- Verlag, New York, NY, USA, [17] Standards for Efficient Cryptography Group, Test Vectors for SEC 1, 1999, aid-390/gec2.pdf. [18] Standards for Efficient Cryptography Group, Elliptic Curve Cryptography, 2000, download/aid-386/sec2 final.pdf. [19] Standards for Efficient Cryptography Group, Recommended Elliptic Curve Domain Parameters, 2000,
A Survey of the Elliptic Curve Integrated Encryption Scheme
JOURNAL OF COMPUTER SCIENCE AND ENGINEERING, VOLUME, ISSUE, AUGUST 010 A Survey of the Elliptic Curve Integrated Encryption Scheme 7 V. Gayoso Martínez, L. Hernández Encinas, and C. Sánchez Ávila Abstract
Implementation of Elliptic Curve Digital Signature Algorithm
Implementation of Elliptic Curve Digital Signature Algorithm Aqeel Khalique Kuldip Singh Sandeep Sood Department of Electronics & Computer Engineering, Indian Institute of Technology Roorkee Roorkee, India
SECURITY IMPROVMENTS TO THE DIFFIE-HELLMAN SCHEMES
www.arpapress.com/volumes/vol8issue1/ijrras_8_1_10.pdf SECURITY IMPROVMENTS TO THE DIFFIE-HELLMAN SCHEMES Malek Jakob Kakish Amman Arab University, Department of Computer Information Systems, P.O.Box 2234,
Computer Security: Principles and Practice
Computer Security: Principles and Practice Chapter 20 Public-Key Cryptography and Message Authentication First Edition by William Stallings and Lawrie Brown Lecture slides by Lawrie Brown Public-Key Cryptography
Table of Contents. Bibliografische Informationen http://d-nb.info/996514864. digitalisiert durch
1 Introduction to Cryptography and Data Security 1 1.1 Overview of Cryptology (and This Book) 2 1.2 Symmetric Cryptography 4 1.2.1 Basics 4 1.2.2 Simple Symmetric Encryption: The Substitution Cipher...
IMPLEMENTATION AND PERFORMANCE ANALYSIS OF ELLIPTIC CURVE DIGITAL SIGNATURE ALGORITHM
NABI ET AL: IMPLEMENTATION AND PERFORMANCE ANALYSIS OF ELLIPTIC CURVE DIGITAL SIGNATURE ALGORITHM 28 IMPLEMENTATION AND PERFORMANCE ANALYSIS OF ELLIPTIC CURVE DIGITAL SIGNATURE ALGORITHM Mohammad Noor
Cryptographic hash functions and MACs Solved Exercises for Cryptographic Hash Functions and MACs
Cryptographic hash functions and MACs Solved Exercises for Cryptographic Hash Functions and MACs Enes Pasalic University of Primorska Koper, 2014 Contents 1 Preface 3 2 Problems 4 2 1 Preface This is a
Overview of Cryptographic Tools for Data Security. Murat Kantarcioglu
UT DALLAS Erik Jonsson School of Engineering & Computer Science Overview of Cryptographic Tools for Data Security Murat Kantarcioglu Pag. 1 Purdue University Cryptographic Primitives We will discuss the
NEW DIGITAL SIGNATURE PROTOCOL BASED ON ELLIPTIC CURVES
NEW DIGITAL SIGNATURE PROTOCOL BASED ON ELLIPTIC CURVES Ounasser Abid 1, Jaouad Ettanfouhi 2 and Omar Khadir 3 1,2,3 Laboratory of Mathematics, Cryptography and Mechanics, Department of Mathematics, Fstm,
Implementing Network Security Protocols
Implementing Network Security Protocols based on Elliptic Curve Cryptography M. Aydos, E. Savaş, and Ç. K. Koç Electrical & Computer Engineering Oregon State University Corvallis, Oregon 97331, USA {aydos,savas,koc}@ece.orst.edu
1720 - Forward Secrecy: How to Secure SSL from Attacks by Government Agencies
1720 - Forward Secrecy: How to Secure SSL from Attacks by Government Agencies Dave Corbett Technical Product Manager Implementing Forward Secrecy 1 Agenda Part 1: Introduction Why is Forward Secrecy important?
EXAM questions for the course TTM4135 - Information Security May 2013. Part 1
EXAM questions for the course TTM4135 - Information Security May 2013 Part 1 This part consists of 5 questions all from one common topic. The number of maximal points for every correctly answered question
Network Security. Computer Networking Lecture 08. March 19, 2012. HKU SPACE Community College. HKU SPACE CC CN Lecture 08 1/23
Network Security Computer Networking Lecture 08 HKU SPACE Community College March 19, 2012 HKU SPACE CC CN Lecture 08 1/23 Outline Introduction Cryptography Algorithms Secret Key Algorithm Message Digest
Software Implementation of Gong-Harn Public-key Cryptosystem and Analysis
Software Implementation of Gong-Harn Public-key Cryptosystem and Analysis by Susana Sin A thesis presented to the University of Waterloo in fulfilment of the thesis requirement for the degree of Master
Chapter 11 Security+ Guide to Network Security Fundamentals, Third Edition Basic Cryptography
Chapter 11 Security+ Guide to Network Security Fundamentals, Third Edition Basic Cryptography What Is Steganography? Steganography Process of hiding the existence of the data within another file Example:
Lecture 9: Application of Cryptography
Lecture topics Cryptography basics Using SSL to secure communication links in J2EE programs Programmatic use of cryptography in Java Cryptography basics Encryption Transformation of data into a form that
Cryptography and Network Security Chapter 10
Cryptography and Network Security Chapter 10 Fifth Edition by William Stallings Lecture slides by Lawrie Brown (with edits by RHB) Chapter 10 Other Public Key Cryptosystems Amongst the tribes of Central
A SOFTWARE COMPARISON OF RSA AND ECC
International Journal Of Computer Science And Applications Vol. 2, No. 1, April / May 29 ISSN: 974-13 A SOFTWARE COMPARISON OF RSA AND ECC Vivek B. Kute Lecturer. CSE Department, SVPCET, Nagpur 9975549138
SEC 2: Recommended Elliptic Curve Domain Parameters
STANDARDS FOR EFFICIENT CRYPTOGRAPHY SEC 2: Recommended Elliptic Curve Domain Parameters Certicom Research Contact: [email protected] September 20, 2000 Version 1.0 c 2000 Certicom Corp. License
Cryptography and Network Security
Cryptography and Network Security Fifth Edition by William Stallings Chapter 9 Public Key Cryptography and RSA Private-Key Cryptography traditional private/secret/single key cryptography uses one key shared
National Security Agency Perspective on Key Management
National Security Agency Perspective on Key Management IEEE Key Management Summit 5 May 2010 Petrina Gillman Information Assurance (IA) Infrastructure Development & Operations Technical Director National
IT Networks & Security CERT Luncheon Series: Cryptography
IT Networks & Security CERT Luncheon Series: Cryptography Presented by Addam Schroll, IT Security & Privacy Analyst 1 Outline History Terms & Definitions Symmetric and Asymmetric Algorithms Hashing PKI
Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography (Revised)
NIST Special Publication 800-56A Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography (Revised) Elaine Barker, Don Johnson, and Miles Smid C O M P U T E R S E C
Elliptic Curve Cryptography
Elliptic Curve Cryptography Elaine Brow, December 2010 Math 189A: Algebraic Geometry 1. Introduction to Public Key Cryptography To understand the motivation for elliptic curve cryptography, we must first
Public Key Cryptography. c Eli Biham - March 30, 2011 258 Public Key Cryptography
Public Key Cryptography c Eli Biham - March 30, 2011 258 Public Key Cryptography Key Exchange All the ciphers mentioned previously require keys known a-priori to all the users, before they can encrypt
Developing and Investigation of a New Technique Combining Message Authentication and Encryption
Developing and Investigation of a New Technique Combining Message Authentication and Encryption Eyas El-Qawasmeh and Saleem Masadeh Computer Science Dept. Jordan University for Science and Technology P.O.
2. Cryptography 2.4 Digital Signatures
DI-FCT-UNL Computer and Network Systems Security Segurança de Sistemas e Redes de Computadores 2010-2011 2. Cryptography 2.4 Digital Signatures 2010, Henrique J. Domingos, DI/FCT/UNL 2.4 Digital Signatures
ETSI TS 102 176-2 V1.2.1 (2005-07)
TS 102 176-2 V1.2.1 (2005-07) Technical Specification Electronic Signatures and Infrastructures (ESI); Algorithms and Parameters for Secure Electronic Signatures; Part 2: Secure channel protocols and algorithms
An Efficient and Secured Data Storage Scheme in Cloud Computing Using ECC-based PKI
An fficient and Secured ata Storage Scheme in Cloud Computing Using CC-based PKI XiaoChun YIN*, ZengGuang LIU**, Hoon Jae L *** *epartment of Ubiquitous ITGraduate School of ongseo University, Sasang-Gu,
Secure Network Communication Part II II Public Key Cryptography. Public Key Cryptography
Kommunikationssysteme (KSy) - Block 8 Secure Network Communication Part II II Public Key Cryptography Dr. Andreas Steffen 2000-2001 A. Steffen, 28.03.2001, KSy_RSA.ppt 1 Secure Key Distribution Problem
Cryptography and Key Management Basics
Cryptography and Key Management Basics Erik Zenner Technical University Denmark (DTU) Institute for Mathematics [email protected] DTU, Oct. 23, 2007 Erik Zenner (DTU-MAT) Cryptography and Key Management
Public Key Cryptography Overview
Ch.20 Public-Key Cryptography and Message Authentication I will talk about it later in this class Final: Wen (5/13) 1630-1830 HOLM 248» give you a sample exam» Mostly similar to homeworks» no electronic
Transitions: Recommendation for Transitioning the Use of Cryptographic Algorithms and Key Lengths
NIST Special Publication 800-131A Transitions: Recommendation for Transitioning the Use of Cryptographic Algorithms and Key Lengths Elaine Barker and Allen Roginsky Computer Security Division Information
Final Exam. IT 4823 Information Security Administration. Rescheduling Final Exams. Kerberos. Idea. Ticket
IT 4823 Information Security Administration Public Key Encryption Revisited April 5 Notice: This session is being recorded. Lecture slides prepared by Dr Lawrie Brown for Computer Security: Principles
Efficient Framework for Deploying Information in Cloud Virtual Datacenters with Cryptography Algorithms
Efficient Framework for Deploying Information in Cloud Virtual Datacenters with Cryptography Algorithms Radhika G #1, K.V.V. Satyanarayana *2, Tejaswi A #3 1,2,3 Dept of CSE, K L University, Vaddeswaram-522502,
Implementing ECC with Java Standard Edition 7
Implementing ECC with Java Standard Edition 7 V. Gayoso Martínez 1 and L. Hernández Encinas 2 1,2 Information Security Institute (ISI), Spanish National Research Council (CSIC), Madrid, Spain 1 [email protected];
Outline. Computer Science 418. Digital Signatures: Observations. Digital Signatures: Definition. Definition 1 (Digital signature) Digital Signatures
Outline Computer Science 418 Digital Signatures Mike Jacobson Department of Computer Science University of Calgary Week 12 1 Digital Signatures 2 Signatures via Public Key Cryptosystems 3 Provable 4 Mike
Notes on Network Security Prof. Hemant K. Soni
Chapter 9 Public Key Cryptography and RSA Private-Key Cryptography traditional private/secret/single key cryptography uses one key shared by both sender and receiver if this key is disclosed communications
Network Security. Chapter 2 Basics 2.2 Public Key Cryptography. Public Key Cryptography. Public Key Cryptography
Chair for Network Architectures and Services Department of Informatics TU München Prof. Carle Encryption/Decryption using Public Key Cryptography Network Security Chapter 2 Basics 2.2 Public Key Cryptography
Cryptographic Algorithms and Key Size Issues. Çetin Kaya Koç Oregon State University, Professor http://islab.oregonstate.edu/koc [email protected].
Cryptographic Algorithms and Key Size Issues Çetin Kaya Koç Oregon State University, Professor http://islab.oregonstate.edu/koc [email protected] Overview Cryptanalysis Challenge Encryption: DES AES Message
A New Efficient Digital Signature Scheme Algorithm based on Block cipher
IOSR Journal of Computer Engineering (IOSRJCE) ISSN: 2278-0661, ISBN: 2278-8727Volume 7, Issue 1 (Nov. - Dec. 2012), PP 47-52 A New Efficient Digital Signature Scheme Algorithm based on Block cipher 1
An Efficient and Secure Key Management Scheme for Hierarchical Access Control Based on ECC
An Efficient and Secure Key Management Scheme for Hierarchical Access Control Based on ECC Laxminath Tripathy 1 Nayan Ranjan Paul 2 1Department of Information technology, Eastern Academy of Science and
Lukasz Pater CMMS Administrator and Developer
Lukasz Pater CMMS Administrator and Developer EDMS 1373428 Agenda Introduction Why do we need asymmetric ciphers? One-way functions RSA Cipher Message Integrity Examples Secure Socket Layer Single Sign
International Journal of Information Technology, Modeling and Computing (IJITMC) Vol.1, No.3,August 2013
FACTORING CRYPTOSYSTEM MODULI WHEN THE CO-FACTORS DIFFERENCE IS BOUNDED Omar Akchiche 1 and Omar Khadir 2 1,2 Laboratory of Mathematics, Cryptography and Mechanics, Fstm, University of Hassan II Mohammedia-Casablanca,
Cryptographic mechanisms
General Secretariat for National Defence Central Directorate for Information Systems Security PRIME MINISTER Paris, 2007 september 14 No. 1904/SGDN/DCSSI/SDS/LCR Cryptographic mechanisms Rules and recommendations
A New Generic Digital Signature Algorithm
Groups Complex. Cryptol.? (????), 1 16 DOI 10.1515/GCC.????.??? de Gruyter???? A New Generic Digital Signature Algorithm Jennifer Seberry, Vinhbuu To and Dongvu Tonien Abstract. In this paper, we study
Digital Signatures. Meka N.L.Sneha. Indiana State University. [email protected]. October 2015
Digital Signatures Meka N.L.Sneha Indiana State University [email protected] October 2015 1 Introduction Digital Signatures are the most trusted way to get documents signed online. A digital
CS 758: Cryptography / Network Security
CS 758: Cryptography / Network Security offered in the Fall Semester, 2003, by Doug Stinson my office: DC 3122 my email address: [email protected] my web page: http://cacr.math.uwaterloo.ca/~dstinson/index.html
The Mathematics of the RSA Public-Key Cryptosystem
The Mathematics of the RSA Public-Key Cryptosystem Burt Kaliski RSA Laboratories ABOUT THE AUTHOR: Dr Burt Kaliski is a computer scientist whose involvement with the security industry has been through
Lecture Note 5 PUBLIC-KEY CRYPTOGRAPHY. Sourav Mukhopadhyay
Lecture Note 5 PUBLIC-KEY CRYPTOGRAPHY Sourav Mukhopadhyay Cryptography and Network Security - MA61027 Modern/Public-key cryptography started in 1976 with the publication of the following paper. W. Diffie
CS 348: Computer Networks. - Security; 30 th - 31 st Oct 2012. Instructor: Sridhar Iyer IIT Bombay
CS 348: Computer Networks - Security; 30 th - 31 st Oct 2012 Instructor: Sridhar Iyer IIT Bombay Network security Security Plan (RFC 2196) Identify assets Determine threats Perform risk analysis Implement
Asymmetric Encryption
Asymmetric Encryption logical representation: Asymmetric Cryptography plaintext plaintext kpub E kpub () kprv E kprv () ciphertext ciphertext kprv E -1 kprv () kpub E -1 kpub () used in digital envelope
CRYPTOGRAPHY AND NETWORK SECURITY
CRYPTOGRAPHY AND NETWORK SECURITY PRINCIPLES AND PRACTICE SIXTH EDITION William Stallings International Edition contributions by Mohit P Tahiliani NITK Surathkal PEARSON Boston Columbus Indianapolis New
CUNSHENG DING HKUST, Hong Kong. Computer Security. Computer Security. Cunsheng DING, HKUST COMP4631
Cunsheng DING, HKUST Lecture 08: Key Management for One-key Ciphers Topics of this Lecture 1. The generation and distribution of secret keys. 2. A key distribution protocol with a key distribution center.
Digital Signature Standard (DSS)
FIPS PUB 186-4 FEDERAL INFORMATION PROCESSING STANDARDS PUBLICATION Digital Signature Standard (DSS) CATEGORY: COMPUTER SECURITY SUBCATEGORY: CRYPTOGRAPHY Information Technology Laboratory National Institute
MATH 168: FINAL PROJECT Troels Eriksen. 1 Introduction
MATH 168: FINAL PROJECT Troels Eriksen 1 Introduction In the later years cryptosystems using elliptic curves have shown up and are claimed to be just as secure as a system like RSA with much smaller key
ARCHIVED PUBLICATION
ARCHIVED PUBLICATION The attached publication, FIPS Publication 186-3 (dated June 2009), was superseded on July 19, 2013 and is provided here only for historical purposes. For the most current revision
A blind digital signature scheme using elliptic curve digital signature algorithm
A blind digital signature scheme using elliptic curve digital signature algorithm İsmail BÜTÜN * and Mehmet DEMİRER *Department of Electrical Engineering, University of South Florida, Tampa, FL, USA Department
Secure Network Communication Based on Text-to-Image Encryption
Secure Network Communication Based on Text-to-Image Encryption Ahmad Abusukhon 1, Mohamad Talib 2, Issa Ottoum 3 1 IT Faculty, - Computer Network Department Al-Zaytoonah University of Jordan Amman, JORDAN
Chapter 6 Electronic Mail Security
Cryptography and Network Security Chapter 6 Electronic Mail Security Lectured by Nguyễn Đức Thái Outline Pretty Good Privacy S/MIME 2 Electronic Mail Security In virtually all distributed environments,
A SURVEY ON ELLIPTIC CURVE DIGITAL SIGNATURE ALGORITHM AND ITS VARIANTS
A SURVEY ON ELLIPTIC CURVE DIGITAL SIGNATURE ALGORITHM AND ITS VARIANTS ABSTRACT Greeshma Sarath 1, Devesh C Jinwala 2 and Sankita Patel 3 1,2,3 Department of Computer Engineering, SVNIT, Surat [email protected],
Software Tool for Implementing RSA Algorithm
Software Tool for Implementing RSA Algorithm Adriana Borodzhieva, Plamen Manoilov Rousse University Angel Kanchev, Rousse, Bulgaria Abstract: RSA is one of the most-common used algorithms for public-key
C O M P U T E R S E C U R I T Y
NIST Special Publication 800-56C Recommendation for Key Derivation through Extraction-then-Expansion Lily Chen Computer Security Division Information Technology Laboratory C O M P U T E R S E C U R I T
Cryptography and Network Security Chapter 15
Cryptography and Network Security Chapter 15 Fourth Edition by William Stallings Lecture slides by Lawrie Brown Chapter 15 Electronic Mail Security Despite the refusal of VADM Poindexter and LtCol North
A Factoring and Discrete Logarithm based Cryptosystem
Int. J. Contemp. Math. Sciences, Vol. 8, 2013, no. 11, 511-517 HIKARI Ltd, www.m-hikari.com A Factoring and Discrete Logarithm based Cryptosystem Abdoul Aziz Ciss and Ahmed Youssef Ecole doctorale de Mathematiques
The Misuse of RC4 in Microsoft Word and Excel
The Misuse of RC4 in Microsoft Word and Excel Hongjun Wu Institute for Infocomm Research, Singapore [email protected] Abstract. In this report, we point out a serious security flaw in Microsoft
A New secure email scheme Using Digital Signature with S/MIME
International Journal of Computer Networks and Communications Security VOL. 4, NO. 3, MARCH 2016, 56 62 Available online at: www.ijcncs.org E-ISSN 2308-9830 (Online) / ISSN 2410-0595 (Print) A New secure
Principles of Public Key Cryptography. Applications of Public Key Cryptography. Security in Public Key Algorithms
Principles of Public Key Cryptography Chapter : Security Techniques Background Secret Key Cryptography Public Key Cryptography Hash Functions Authentication Chapter : Security on Network and Transport
Authentication requirement Authentication function MAC Hash function Security of
UNIT 3 AUTHENTICATION Authentication requirement Authentication function MAC Hash function Security of hash function and MAC SHA HMAC CMAC Digital signature and authentication protocols DSS Slides Courtesy
Simple Encryption/Decryption Application
Simple Encryption/Decryption Application Majdi Al-qdah Faculty of Information Technology Multimedia University Cyberjaya, 63100, Malaysia [email protected] Lin Yi Hui Faculty of Information Technology
AN IMPLEMENTATION OF HYBRID ENCRYPTION-DECRYPTION (RSA WITH AES AND SHA256) FOR USE IN DATA EXCHANGE BETWEEN CLIENT APPLICATIONS AND WEB SERVICES
HYBRID RSA-AES ENCRYPTION FOR WEB SERVICES AN IMPLEMENTATION OF HYBRID ENCRYPTION-DECRYPTION (RSA WITH AES AND SHA256) FOR USE IN DATA EXCHANGE BETWEEN CLIENT APPLICATIONS AND WEB SERVICES Kalyani Ganesh
FIPS 140-2 Non- Proprietary Security Policy. McAfee SIEM Cryptographic Module, Version 1.0
FIPS 40-2 Non- Proprietary Security Policy McAfee SIEM Cryptographic Module, Version.0 Document Version.4 December 2, 203 Document Version.4 McAfee Page of 6 Prepared For: Prepared By: McAfee, Inc. 282
Cryptography and Network Security: Summary
Cryptography and Network Security: Summary Timo Karvi 12.2013 Timo Karvi () Cryptography and Network Security: Summary 12.2013 1 / 17 Summary of the Requirements for the exam The advices are valid for
Blinding Self-Certified Key Issuing Protocols Using Elliptic Curves
Blinding Self-Certified Key Issuing Protocols Using Elliptic Curves Billy Bob Brumley Helsinki University of Technology Laboratory for Theoretical Computer Science [email protected] Abstract Self-Certified
Cryptography and Network Security Chapter 9
Cryptography and Network Security Chapter 9 Fifth Edition by William Stallings Lecture slides by Lawrie Brown (with edits by RHB) Chapter 9 Public Key Cryptography and RSA Every Egyptian received two names,
Cryptographic Hash Functions Message Authentication Digital Signatures
Cryptographic Hash Functions Message Authentication Digital Signatures Abstract We will discuss Cryptographic hash functions Message authentication codes HMAC and CBC-MAC Digital signatures 2 Encryption/Decryption
Chapter 23. Database Security. Security Issues. Database Security
Chapter 23 Database Security Security Issues Legal and ethical issues Policy issues System-related issues The need to identify multiple security levels 2 Database Security A DBMS typically includes a database
Symmetric Key cryptosystem
SFWR C03: Computer Networks and Computer Security Mar 8-11 200 Lecturer: Kartik Krishnan Lectures 22-2 Symmetric Key cryptosystem Symmetric encryption, also referred to as conventional encryption or single
Safeguarding Data Using Encryption. Matthew Scholl & Andrew Regenscheid Computer Security Division, ITL, NIST
Safeguarding Data Using Encryption Matthew Scholl & Andrew Regenscheid Computer Security Division, ITL, NIST What is Cryptography? Cryptography: The discipline that embodies principles, means, and methods
Pulse Secure, LLC. January 9, 2015
Pulse Secure Network Connect Cryptographic Module Version 2.0 Non-Proprietary Security Policy Document Version 1.1 Pulse Secure, LLC. January 9, 2015 2015 by Pulse Secure, LLC. All rights reserved. May
Elements of Applied Cryptography Public key encryption
Network Security Elements of Applied Cryptography Public key encryption Public key cryptosystem RSA and the factorization problem RSA in practice Other asymmetric ciphers Asymmetric Encryption Scheme Let
Chapter 10. Network Security
Chapter 10 Network Security 10.1. Chapter 10: Outline 10.1 INTRODUCTION 10.2 CONFIDENTIALITY 10.3 OTHER ASPECTS OF SECURITY 10.4 INTERNET SECURITY 10.5 FIREWALLS 10.2 Chapter 10: Objective We introduce
Secure Sockets Layer
SSL/TLS provides endpoint authentication and communications privacy over the Internet using cryptography. For web browsing, email, faxing, other data transmission. In typical use, only the server is authenticated
Network Security. Security Attacks. Normal flow: Interruption: 孫 宏 民 [email protected] Phone: 03-5742968 國 立 清 華 大 學 資 訊 工 程 系 資 訊 安 全 實 驗 室
Network Security 孫 宏 民 [email protected] Phone: 03-5742968 國 立 清 華 大 學 資 訊 工 程 系 資 訊 安 全 實 驗 室 Security Attacks Normal flow: sender receiver Interruption: Information source Information destination
Elliptic Curve Cryptography Methods Debbie Roser Math\CS 4890
Elliptic Curve Cryptography Methods Debbie Roser Math\CS 4890 Why are Elliptic Curves used in Cryptography? The answer to this question is the following: 1) Elliptic Curves provide security equivalent
SubmitedBy: Name Reg No Email Address. Mirza Kashif Abrar 790604-T079 kasmir07 (at) student.hh.se
SubmitedBy: Name Reg No Email Address Mirza Kashif Abrar 790604-T079 kasmir07 (at) student.hh.se Abid Hussain 780927-T039 abihus07 (at) student.hh.se Imran Ahmad Khan 770630-T053 imrakh07 (at) student.hh.se
EXAM questions for the course TTM4135 - Information Security June 2010. Part 1
EXAM questions for the course TTM4135 - Information Security June 2010 Part 1 This part consists of 6 questions all from one common topic. The number of maximal points for every correctly answered question
Efficient and Robust Secure Aggregation of Encrypted Data in Wireless Sensor Networks
Efficient and Robust Secure Aggregation of Encrypted Data in Wireless Sensor Networks J. M. BAHI, C. GUYEUX, and A. MAKHOUL Computer Science Laboratory LIFC University of Franche-Comté Journée thématique
Public-Key Infrastructure
Public-Key Infrastructure Technology and Concepts Abstract This paper is intended to help explain general PKI technology and concepts. For the sake of orientation, it also touches on policies and standards
SecureDoc Disk Encryption Cryptographic Engine
SecureDoc Disk Encryption Cryptographic Engine FIPS 140-2 Non-Proprietary Security Policy Abstract: This document specifies Security Policy enforced by SecureDoc Cryptographic Engine compliant with the
Common Pitfalls in Cryptography for Software Developers. OWASP AppSec Israel July 2006. The OWASP Foundation http://www.owasp.org/
Common Pitfalls in Cryptography for Software Developers OWASP AppSec Israel July 2006 Shay Zalalichin, CISSP AppSec Division Manager, Comsec Consulting [email protected] Copyright 2006 - The OWASP
CERTIFICATE AUTHORITY SCHEMES USING ELLIPTIC CURVE CRYPTOGRAPHY, RSA AND THEIR VARIANTS- SIMULATION USING NS2
American Journal of Applied Sciences 11 (2): 171-179, 2014 ISSN: 1546-9239 2014 Science Publication doi:10.3844/ajassp.2014.171.179 Published Online 11 (2) 2014 (http://www.thescipub.com/ajas.toc) CERTIFICATE
An Introduction to Cryptography as Applied to the Smart Grid
An Introduction to Cryptography as Applied to the Smart Grid Jacques Benoit, Cooper Power Systems Western Power Delivery Automation Conference Spokane, Washington March 2011 Agenda > Introduction > Symmetric
Public Key (asymmetric) Cryptography
Public-Key Cryptography UNIVERSITA DEGLI STUDI DI PARMA Dipartimento di Ingegneria dell Informazione Public Key (asymmetric) Cryptography Luca Veltri (mail.to: [email protected]) Course of Network Security,
Constructing Pairing-Friendly Elliptic Curves with Embedding Degree 10
with Embedding Degree 10 University of California, Berkeley, USA ANTS-VII, 2006 Outline 1 Introduction 2 The CM Method: The Basic Construction The CM Method: Generating Families of Curves 3 Outline 1 Introduction
UM0586 User manual. STM32 Cryptographic Library. Introduction
User manual STM32 Cryptographic Library Introduction This manual describes the API of the STM32 cryptographic library (STM32-CRYP-LIB) that supports the following cryptographic algorithms: AES-128, AES-192,
Practice Questions. CS161 Computer Security, Fall 2008
Practice Questions CS161 Computer Security, Fall 2008 Name Email address Score % / 100 % Please do not forget to fill up your name, email in the box in the midterm exam you can skip this here. These practice
Key & Data Storage on Mobile Devices
Key & Data Storage on Mobile Devices Advanced Computer Networks 2015/2016 Johannes Feichtner [email protected] Outline Why is this topic so delicate? Keys & Key Management High-Level Cryptography
