Main content
Internet safety
Course: Internet safety > Unit 1
Lesson 10: Data encryption techniquesPublic key cryptography: What is it?
After WWII, the US and Soviet Union raced to become global superpowers, leading to the creation of NORAD and computer networking. As the internet grew, encryption became essential for secure communication. Diffie & Hellman devised a trick using one-way functions to share secret keys without eavesdroppers intercepting them. Created by Brit Cruise.
Want to join the conversation?
- I don't understand. Eve has the public color (yellow), as well as each of the colors created by Alice and Bob. Couldn't Eve simply use logic and the color wheel to determine the private colors by both Alice and Bob? Example: Bob's color was green. Eve could just "subtract" yellow from the color green to get blue, therefore getting Bob's "secret color", therefore getting the mixture, or key. Right?(78 votes)
- Certainly Eve can try to guess what their original colors were, but only come close to the exact colors. On the other hand neither Alice nor Bob need to struggle to know their joint combination color.(49 votes)
- I dont understand how they end up with the same color. I mean. if you mix Your public color with bobs red, how is it that is it guarenteed that they will end up with the same color!?(0 votes)
- They both mix the same colours, but in a different order. Because order does not matter, they end up with the same colour.(23 votes)
- how come Eve can not make her own private number?(3 votes)
- bacause bob and alices private colour is never revealed. Eve only gets to see half-constructed keys. But no way to find out how the yellow was converted to these half constructed keys. Except to try every possible combination, and it is arranged to be a lot of guesses.(2 votes)
- couldn't eve just not mix all the colours she has? that way she would(probably) get the common colour(1 vote)
- This wouldn't work and wouldn't be practical in the numerical procedure.(4 votes)
- why does eve have a yellow colour if she is not using it.?(2 votes)
- Because yellow was agreed on publicly (like on the internet)
Hope this helps(2 votes)
- You know how Brit Cruise said it would be hard to decode a mixed color? Then how do Alice and Bob both decode the colors do find each others private colors. Or is the mixed-mixed color the secret shared private color?(1 vote)
- The mixed-mixed color is the private color, yes.(2 votes)
- At, eve, with the green could fairly easily go into the color wheel and decode the secret colors. I don't get how that is hard 3:18(0 votes)
- It's harder than mixing two colors. However, It's not really hard in case of colors but it is insanely hard if you used the method in the next videos.
This analogy were made just to make it easy to understand the general concept.(6 votes)
- I am confused. If I use encryption software and I have a key that I need to give another person (and them vice versa) I don't know understand how careful I need to be with the string of letters it gives me. By posting the key on a social network, for example, is it analogous to the video where the private color and the yellow can be seen, but their private color is kept secret to mix later? I don't know if I'm making sense. I think that I can post my key that someone has to enter for connection, but I am afraid that when everyone else sees the key they can decode communications. Thanks.(1 vote)
- If you are using a symmetric cipher, like the Caesar cipher or AES, then the key must be kept secret and no one except the sender and receiver should be allowed to see it.
If you are using public key cryptography then you will have two keys: a public key and a private key. Everyone in the world should be allowed to see your public key, but you must keep the private key secret (or everyone will be able to read your messages).
If you encrypt a message with a good cipher then you shouldn't care who sees the cipher text, because they shouldn't be able to figure out what the original message was (unless they have the secret key).(2 votes)
- Why was the most vulnerable part of the US the North Pole 0:27(1 vote)
- It's the shortest distance from Russia. This means that the time for the US to detect and respond to a missile launched over the North Pole is smaller than a missile taking a different path. The North Pole also has the problem of being an area where it is very tough to set up and maintain equipment for detection, or interception, due to its hostile environment (Non-ownership of the area by the US would also complicate setting up military equipment there. .(1 vote)
- is public key cryptography same as symmetric encryption ??(1 vote)
- No.
Public key cryptography uses two keys:
1) a public key used by the sender to encrypt messages
2) a private key used by the receiver to decrypt messages
Symmetric key cryptography uses 1 key, that can be used to both encrypt and decrypt messages.(1 vote)
Video transcript
Brit: After World War 2,
with most of Europe in ruins, tension grew between the
Soviet Union and the United States. It was clear that the
next global superpower required the ability to both
launch and successively defend nuclear attacks from
intercontinental ballistic missiles. In North America, the most vulnerable
point of attack was over the North Pole. So in 1958, a joint effort between
United States and Canada was established, known as NORAD, or North American Aerospace
Defense Command. An important line of defense was the
semi-automatic ground environment. It was an automated system of
over 100 long-distance radars scattered across North America. They were connected to
computerized radar stations that transmitted tracking data using
telephone lines or radio waves. All of this radar information was
fed into a primary warning center buried a mile deep inside
Cheyenne Mountain in Colorado. This application of machine
to machine communication allowed operators to make
split-second decisions using information transmitted and
processed automatically by computers. This idea of being online was
quickly adapted and advanced by universities in the following years as they understood the potential
of computer networking. Man: The thing that makes the computer communication network
special, is that it puts the workers -- that'd be the team members who
are geographically distributed -- in touch not only with one another, but with the information base
with which they work all the time. And this is obviously going to make a
tremendous difference in how we plan, organize, and execute almost everything
of any intellectual consequence. If we get into a mode in which
everything is handled electronically, and your only identification is some little plastic thing
you stick into the machinery, then I can imagine that they
want to get that settled up with your bank account just right now,
and put it through all the checks, and that would require a network. Brit: Money transfers are just one of
a growing number of applications which required encryption
to remain secure; and as the internet grew to
encompass millions around the world, a new problem emerged. At the time, encryption
required two parties to first share a secret random
number, known as a key. So how could two people
who have never met agree on a secret shared key without letting Eve,
who is always listening, also obtain a copy? In 1976, Whitfield Diffie
& Martin Hellman devised an amazing trick to do this. First, let's explore how this
trick is done using colors. How could Alice and Bob agree on a
secret color without Eve finding it out? The trick is based on two facts: one, it's easy to mix two colors
together to make a third color; and two, given a mixed color,
it's hard to reverse it in order to find the
exact original colors. This is the basis for a lock: easy in one direction,
hard in the reverse direction. This is known as a one-way function. Now, the solution works as follows: First, they agree publicly on
a starting color, say yellow. Next, Alice and Bob both
randomly select private colors, and mix them into the public yellow
in order to disguise their private colors. Now, Alice keeps her private color
and sends her mixture to Bob, and Bob keeps his private color
and sends his mixture to Alice. Now, the heart of the trick: Alice and Bob add their private colors
to the other person's mixture and arrive at a shared secret color. Notice how Eve is unable to
determine this exact color, since she needs one of
their private colors to do so. And that is the trick. Now, to do this with numbers,
we need a numerical procedure which is easy in one direction
and hard in the other.