Home > Articles

This chapter is from the book

17.5 Public Key Cryptosystems

The concept of public key cryptosystems was introduced in 1976 by Diffie and Hellman [12]. In conventional cryptosystems the encryption algorithm can be revealed since the security of the system depends on a safeguarded key. The same key is used for both encryption and decryption. Public key cryptosystems utilize two different keys, one for encryption and the other for decryption. In public key cryptosystems, not only the encryption algorithm but also the encryption key can be publicly revealed without compromising the security of the system. In fact, a public directory, much like a telephone directory, is envisioned, which contains the encryption keys of all the subscribers. Only the decryption keys are kept secret. Figure 17.17 illustrates such a system. The important features of a public key cryptosystem are as follows:

  1. The encryption algorithm EK and the decryption algorithm DK are invertible transformations on the plaintext M, or the ciphertext C, defined by the key K. That is, for each K and M, if C = EK(M), then M = DK(C) = DK[EK(M)].

  2. For each K, EK and DK are easy to compute.

  3. For each K, the computation of DK from EK is computationally intractable.

Such a system would enable secure communication between subscribers who have never met or communicated before. For example, as seen in Figure 17.17, subscriber A can send a message, M, to subscriber B by looking up B’s encryption key in the directory and applying the encryption algorithm, EB, to obtain the ciphertext C = EB(M), which he transmits on the public channel. Subscriber B is the only party who can decrypt C by applying his decryption algorithm, DB, to obtain M = DB(C).

17.5.1 Signature Authentication Using a Public Key Cryptosystem

Figure 17.18 illustrates the use of a public key cryptosystem for signature authentication. Subscriber A “signs” his message by first applying his decryption algorithm, DA, to the message, yielding Image. Next, he uses the encryption algorithm, EB, of subscriber B to encrypt S, yielding Image, which he transmits on a public channel. When subscriber B receives C, he first decrypts it using his private decryption algorithm, DB, yielding Image. Then he applies the encryption algorithm of subscriber A to produce Image.

If the result is an intelligible message, it must have been initiated by subscriber A, since no one else could have known A’s secret decryption key to form S = DA(M). Notice that S is both message dependent and signer dependent, which means that while B can be sure that the received message indeed came from A, at the same time A can be sure that no one can attribute any false messages to him.

17.5.2 A Trapdoor One-Way Function

Public key cryptosystems are based on the concept of trapdoor one-way functions. Let us first define a one-way function as an easily computed function whose inverse is computationally infeasible to find. For example, consider the function y = x5 + 12x3 + 107x + 123. It should be apparent that given x, y is easy to compute, but given y, x is relatively difficult to compute. A trapdoor one-way function is a one-way function whose inverse is easily computed if certain features, used to design the function, are known. Like a trapdoor, such functions are easy to go through in one direction. Without special information the reverse process takes an impossibly long time. We will apply the concept of a trapdoor in Section 17.5.5, when we discuss the Merkle–Hellman scheme.

17.5.3 The Rivest–Shamir–Adelman Scheme

In the Rivest–Shamir–Adelman (RSA) scheme, messages are first represented as integers in the range (0, n − 1). Each user chooses his own value of n and another pair of positive integers e and d, in a manner to be described below. The user places his encryption key, the number pair (n, e), in the public directory. The decryption key consists of the number pair (n, d), of which d is kept secret. Encryption of a message M and decryption of a ciphertext C are defined as follows:

Image

They are each easy to compute and the results of each operation are integers in the range (0, n - 1). In the RSA scheme, n is obtained by selecting two large prime numbers p and q and multiplying them together:

Image

Although n is made public, p and q are kept hidden, due to the great difficulty in factoring n. Then

Image

called Euler’s totient function, is formed. The parameter ϕ(n) has the interesting property [12] that for any integer X in the range (0, n - 1) and any integer k,

Image

Therefore, while all other arithmetic is done modulo-n, arithmetic in the exponent is done modulo-ϕ(n). A large integer, d, is randomly chosen so that it is relatively prime to ϕ(n), which means that (n) and d must have no common divisors other than 1, expressed as

Image

where gcd means “greatest common divisor.” Any prime number greater than the larger of (p, q) will suffice. Then the integer e, where 0 < e < (n), is found from the relationship

Image

which, from Equation (17.35), is tantamount to choosing e and d to satisfy

Image

Therefore,

Image

and decryption works correctly. Given an encryption key (n, e), one way that a cryptanalyst might attempt to break the cipher is to factor n into p and q, compute (n) = (p - 1)(q - 1), and compute d from Equation (17.37). This is all straightforward except for the factoring of n.

The RSA scheme is based on the fact that it is easy to generate two large prime numbers, p and q, and multiply them together, but it is very much more difficult to factor the result. The product can therefore be made public as part of the encryption key, without compromising the factors that would reveal the decryption key corresponding to the encryption key. By making each of the factors roughly 100 digits long, the multiplication can be done in a fraction of a second, but the exhaustive factoring of the result should take billions of years [2].

17.5.3.1 Use of the RSA Scheme

Using the example in Reference [13], let p = 47, q = 59. Therefore, n = pq = 2773 and ϕ(n) = (p - 1)(q - 1) = 2668. The parameter d is chosen to be relatively prime to ϕ(n). For example, choose d = 157. Next, the value of e is computed as follows (the details are shown in the next section):

Image

Therefore, e = 17. Consider the plaintext example

ITS ALL GREEK TO ME

By replacing each letter with a two-digit number in the range (01, 26) corresponding to its position in the alphabet, and encoding a blank as 00, the plaintext message can be written as

0920 1900 0112 1200 0718 0505 1100 2015 0013 0500

Each message needs to be expressed as an integer in the range (0, n -1); therefore, for this example, encryption can be performed on blocks of four digits at a time since this is the maximum number of digits that will always yield a number less than n - 1 = 2772. The first four digits (0920) of the plaintext are encrypted as follows:

C = (M)e modulo-n = (920)17 modulo-2773 = 948

Continuing this process for the remaining plaintext digits, we get

C = 0948 2342 1084 1444 2663 2390 0778 0774 0219 1655

The plaintext is returned by applying the decryption key, as follows:

M = (C)157modulo-2773

17.5.3.2 How to Compute e

A variation of Euclid’s algorithm [14] for computing the gcd of ϕ(n) and d is used to compute e. First, compute a series x0, x1, x2, . . . , where x0 = ϕ(n), x1 = d, and xi + 1 = xi − 1 modulo-xi, until an xk = 0 is found. Then the gcd (x0, x1) = xk − 1. For each xi compute numbers ai and bi such that xi = ai x0 + bix1. If xk − 1 = 1, then bk − 1 is the multiplicative inverse of x1 modulo-x0. If bk − 1 is a negative number, the solution is bk − 1 + ϕ(n).

17.5.4 The Knapsack Problem

The classic knapsack problem is illustrated in Figure 17.19. The knapsack is filled with a subset of the items shown with weights indicated in grams. Given the weight of the filled knapsack (the scale is calibrated to deduct the weight of the empty knapsack), determine which items are contained in the knapsack. For this simple example, the solution can easily be found by trial and error. However, if there are 100 possible items in the set instead of 10, the problem may become computationally infeasible.

Let us express the knapsack problem in terms of a knapsack vector and a data vector. The knapsack vector is an n-tuple of distinct integers (analogous to the set of possible knapsack items)

a = a1, a2, … , an

The data vector is an n-tuple of binary symbols

x = x1, x2, … , xn

The knapsack, S, is the sum of a subset of the components of the knapsack vector:

Image

The knapsack problem can be stated as follows: Given S and knowing a, determine x.

17.5.5 A Public Key Cryptosystem Based on a Trapdoor Knapsack

This scheme, also known as the Merkle–Hellman scheme [15], is based on the formation of a knapsack vector that is not super-increasing and is therefore not easy to solve. However, an essential part of this knapsack is a trapdoor that enables the authorized user to solve it.

First, we form a super-increasing n-tuple a′. Then we select a prime number M such that

Image

We also select a random number W, where 1 < W < M, and we form W−1 to satisfy the following relationship:

Image

the vector a′ and the numbers M, W, and W−1 are all kept hidden. Next, we form a with the elements from a′, as follows:

Image

The formation of a using Equation (17.45) constitutes forming a knapsack vector with a trapdoor. When a data vector x is to be transmitted, we multiply x by a, yielding the number S, which is sent on the public channel. Using Equation (17.45), S can be written as follows:

Image

The authorized user receives S and, using Equation (17.44), converts it to S′:

Image

Image

Since the authorized user knows the secretly held super-increasing vector a′, he or she can use S′ to find x.

17.5.5.1 Use of the Merkle–Hellman Scheme

Suppose that user A wants to construct public and private encryption functions. He first considers the super-increasing vector a′ = (171, 197, 459, 1191, 2410, 4517)

Image

He then chooses a prime number M larger than 8945, a random number W, where 1 ≤ W < M, and calculates W−1 to satisfy WW−1 = 1 modulo-M.

Image

He then forms the trapdoor knapsack vector as follows:

Image

User A makes public the vector a, which is clearly not super-increasing. Suppose that user B wants to send a message to user A.

If x = 0 1 0 1 1 0 is the message to be transmitted, user B forms

S = ax = 14,165 and transmits it to user A

User A, who receives S, converts it to S′:

Image

Using S′ = 3798 and the super-increasing vector a′ , user A easily solves for x.

The Merkle–Hellman scheme is now considered broken [16], leaving the RSA scheme (as well as others discussed later) as the algorithms that are useful for implementing public key cryptosystems.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020