unit 6 APCSP

0.0(0)
studied byStudied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/79

Last updated 3:30 AM on 12/10/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

80 Terms

1
New cards

abstraction layer

The Internet is organized into several of these which are controlled by various protocols. From the bottom up, we have the link layer (Ethernet protocol), the Internet layer (IP), transport layer (TCP), and application layer (HTTP).

2
New cards

asymmetric cipher

A cipher in which separate but related keys are used for encryption and decryption.

3
New cards

bandwidth

the rate at which data is downloaded or uploaded in a network

4
New cards

biometrics

using unique physical characteristics such as finger prints, face recognition, etc. for identification

5
New cards

brute force attack

An attempt to try every possible encryption key to break a secret message.

6
New cards

certificate authority

An entity that issues digital certificates.

7
New cards

cipher

A system for creating secret messages.

8
New cards

ciphertext

unreadable, secret message.

9
New cards

client

A computer or software application that requests services from a server located on the internet -- e.g., a Web browser is an example of a client.

10
New cards

computer bug

An informal term for error in computer hardware or software -- the term was coined by Grace Hopper.

11
New cards

computing system

A group of computing devices and programs working together for a common purpose.

12
New cards

cryptography

The art and science of writing secret messages. 'secret writing'

13
New cards

debugging

The process of removing errors from computer hardware or software.

14
New cards

decryption

The process of using a secret key to convert ciphertext into plaintext.

15
New cards

diffie-hellman

An algorithm used to establish a shared secret between two parties. It is primarily used to exchange a symmetric cryptographic key among two parties, Alice and Bob, who wish to communicate securely.

16
New cards

digital certificate

A data packet that certifies the holder of a public key.

17
New cards

digital divide

the gap between those who have access to the Internet and computers and those who do not, usually affected by socioeconomic, geographic, or demographic characteristics.

18
New cards

DNS

An Internet service that translates domain names into IP addresses.

19
New cards

domain name

A hierarchical name (such as trincoll.edu) that identifies a domain and an institution on the Internet. Top levels include com, edu, gov.

20
New cards

encryption

The process of using a secret key to convert plaintext into ciphertext.

21
New cards

encryption key

A piece of secret data used in by encryption and decryption algorithms.

22
New cards

ethernet

A network that uses wires to connect computers.

23
New cards

fault-tolerant

The capability of a system to continue operating properly in the event of the failure of one or more of its components.

24
New cards

firewalls

barriers that protect a network from unauthorized access

25
New cards

frequency analysis

This is performed by counting the occurrence of the letters in an encrypted message in an effort to discover patterns that might reveal the encryption key.

26
New cards

function

A procedure that computes and returns a value.

27
New cards

host

A computer that's connected directly to the Internet -- often a computer that provides certain services or resources.

28
New cards

HTML

A language for formatting Web pages.

29
New cards

HTTP

The set of rules that governs the WWW application.

30
New cards

https

A protocol for secure (trusted, encrypted) communication over the Internet.

31
New cards

Internet Service Provider

A company that provides customers with Internet access.

32
New cards

intractable

A computational problem is labeled this if the only known way to solve the problem depends on an exponential algorithm.

33
New cards

IP Address

A unique string of numbers separated by periods that identifies each computer using the Internet Protocol to communicate over a network.

34
New cards

IPv4

An older 32 bit IP address

35
New cards

IPv6

A newer 128 bit IP address which allows for many more devices to be addressed.

36
New cards

key exchange problem

The problem of sharing a secret key between Alice and Bob, without Eve, an eavesdropper, being able to intercept it.

37
New cards

keylogger

a program to record every keystroke made by a computer user.

38
New cards

LAN

A network that connects computers within a school or home.

39
New cards

latency

a measure of the time it takes for a piece of data to reach its destination

40
New cards

local variables

Variables that are declared and exist only inside a procedure or function (this is called their scope).

41
New cards

malware

Software intended to damage a computing system or to take partial control over its operation.

42
New cards

malware scanning software

Software that helps to protect a computing system against malware infections.

43
New cards

modem

A device that connects a computer to an Internet Service Provider (ISP).

44
New cards

multi-factor authentication (MFA)

users are asked to present several separate pieces of evidence involving knowledge (something they know like a password), possession (something they have like a texted code), and/or inherence (something they are like biometrics).

45
New cards

network

A group of two or more computers that are linked together.

46
New cards

one time pad

An example of perfect (unbreakable) encryption, which is achieved by using, only once, a random polyalphabetic key that is as long the message itself.

47
New cards

packet

A collection of data used by the TCP/IP protocol to transmit data across the Internet. Each packet contains routing data as well as the content of the message.

48
New cards

packet sniffer

Software used by network administrators to monitor data being transmitted over a network. In the wrong hands, it can be used to steal email messages and other information.

49
New cards

packet switching

The method by which information is transmitted through the Internet. Information is broken into packets and each packet is routed independently from source to destination.

50
New cards

phishing

a technique that is used to trick a user into providing personal information usually through email.

51
New cards

ping

A networking utility used by network administrators to test the reachability of a host on the Internet.

52
New cards

plaintext

An unencrypted, readable message.

53
New cards

polyalphabetic substitution

In this system, multiple alphabets are used to encrypt a single message.

54
New cards

protocol

A system of rules that govern the behavior of some system.

55
New cards

public key cryptography

A cryptographic system that uses two keys -- a public key known to everyone and a private or secret key known only to the recipient of the message. When Bob wants to send a secure message to Alice, he uses Alice's public key to encrypt the message. Alice then uses her private key to decrypt it.

56
New cards

ransomware

malware that encrypts and locks computer systems until a ransom is paid.

57
New cards

rogue access point

Gives unauthorized access to secure networks.

58
New cards

router

A device that transmits data between two different networks.

59
New cards

routing

The process of finding a path from sender to receiver.

60
New cards

RSA

A cryptosystem for public-key encryption, and is widely used for securing sensitive data, particularly when being sent over an insecure network such as the Internet.

61
New cards

run-time error

A mistake in the program that occurs during the execution of a program.

62
New cards

scalability

The capacity for the system to change in size and scale to meet new demands.

63
New cards

semantic error

An error in which the program is not working as it is designed to work.

64
New cards

server

A host that provides some kind of service -- e.g., Google's Gmail service.

65
New cards

SMTP/POP

Sets of rules that govern the email servcies.

66
New cards

SSL

A protocol for establishing an encrypted link between a web server and a browser.

67
New cards

strong password

A series of characters that is easy for a user to remember, but would be difficult for someone else to guess based on knowledge of that user.

68
New cards

substitution cipher

A cipher in which letters from a ciphertext alphabet are substituted for the letters in a plaintext message in a systematic way.

69
New cards

symmetric cipher

A cipher in which a single key is used for both encryption and decryption.

70
New cards

syntax error

An error that results from a violation of the programming language grammatical rules.

71
New cards

traceroute

A networking utility used to trace the route and measure delays of packets moving through the Internet.

72
New cards

transposition cipher

In this cipher, letters in the plaintext are rearraged without substitution.

73
New cards

Trojan horse

a malicious program that disguises itself as a useful program that unsuspecting users download.

74
New cards

trust model

The use of a trusted third party to verify the trustworthiness of a digital certificate.

75
New cards

URI

WWW identifier that uniquely identifies a resource on the WWW -- e.g., http://host.com'.

76
New cards

virus

a malicious program that can copy itself and gain access to a computer in an unauthorized way

77
New cards

WAN

A network that connects devices over a broad geographic region -- e.g., a telephone network.

78
New cards

wifi

A network that uses radio waves to connect devices (computers, smart phones, printers).

79
New cards

World Wide Web

An Internet application that is based on the HTTP protocol.

80
New cards

worm

a malicious program that spreads by itself through networks of computers