Key Terms Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

a|b ( a divides b)

A

there is an integer c such that b = ac

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

a and b are congruent modulo m

A

m divides a - b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

prime

A

an integer greater than 1 with exactly 2 positive integer divisors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

composite

A

not prime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

mersenne prime

A

a prime of the form 2^p - 1 where p is prime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

gcd(a,b)

A

the largest integer that divides both a and b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

lcm(a,b)

A

the smallest positive integer that is a multiple of both a and b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

relatively prime integers a and b

A

gcd(a,b) = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

a mod b

A

the remainder when the integer a is divided by the positive integer b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

linear combination of a and b

A

sa + tb

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

lcm(a,b) * gcd(a,b)

A

a*b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

bezout coefficients of and b

A

s and t such that sa + tb = gcd(a,b) holds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

inverse of a modulo m

A

a’ s.t. aa’ = 1 mod m

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

linear congruence

A

ax = b mod m

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

pseudoprime to the base b

A

n s.t. b^(n-1) = 1 mod n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

carmicheal number

A

composite integer n s.t. n is a pseudoprime to all integers b with gcd(b,n) = 1

17
Q

primitive root of a prime p:

A

r s.t. for all k belonging to zp k = r^j mod p

18
Q

encryption

A

the process of making a secret message

19
Q

decryption

A

the process of returning a secret message to its original form

20
Q

encryption key

A

a value that determines which of a family of encryption functions is to be used

21
Q

shift cipher

A

you know what this is

22
Q

affine cipher

A

p is encrypted as (ap + b) mod m

23
Q

character cipher

A

a cipher that encrypts characters one by one

24
Q

block cipher

A

a cipher that encrypts blocks of text

25
Q

private key encryption

A

both the encryption and decryption keys must be kept secret

26
Q

public key encryption

A

encryption where encryption keys are public knowledge, but decryption keys are kept secret

27
Q

RSA

A

Encryption keys: pq and e s.t. gcd(e,(p-1)(q-1)) = 1

Decryption key: e’

28
Q

key exchange protocol

A

a protocol used for two parties to generate a shared key

29
Q

digital signature

A

yenno

30
Q

fully homomorphic cryptosystem

A

operations performed on encrypted data generate the same data as if the operation was performed on the data before encryption

31
Q

bezouts theorem

A

gcd(a,b) is a linear combination of a and b

32
Q

sieve of eratosthenes

A

a procedure for finding all primes smaller than n

33
Q

euclidean algorithm

A

repeat the division algorithm with divisor as dividend and remainder and divisor until remainder = 0. the last remainder is gcd(a,b)

34
Q

fermats little theorem

A

a^p = a mod p