Security Flashcards

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

What are the four main security concerns when data is transmitted ?

A
  • Confidentiality, only the intended receiver should be able to decipher the data
  • Authenticity, the need to identify the sender and the verification that the source is legitimate
  • Integrity, the data should not be altered during transmission
  • Non repudiation, neither the sender or the receiver should be able to deny that they were a part of the data transmission
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the reasons for using key cryptography ?

A
  • To ensure that only the intended receiver is able to understand the message
  • To ensure that the message is authentic and came from a verified, legitimate source
  • To ensure that the message has not been altered during transmission
  • Non-repudiation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is plain text ?

What is cipher text ?

A
  • It is the original data before it is put through the encryption algorithm
  • It is the product of the plain text being put through the encryption algorithm
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is symmetric key encryption ?

A

A single key is used for both encryption and decryption.
They key is used by all parties involved in the transmission

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

What are the pros and cons of symmetric key encryption ?

A

Pros

  • It is not very complex
  • It is fast

Cons

  • The key has to be exchanged securely
  • If the key is compromised, both sent and received messages can be decrypted
  • Cannot ensure non-repudiation
  • Cannot ensure origin or integrity of the data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a private key ?

A
  • It is the secret key that is never transmitted, it is only known by the owner of the key pair
  • It has a matching public key
  • It is used to decrypt data that was encrypted using its matching public key
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a public key ?

A
  • It is the key that is made available to all people who will be communicated with
  • It has a matching private key
  • It is used to encrypt the message being sent to the owner of the key so it can be decrypted using the matching private key
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is asymmetric encryption ?

A

It uses two keys, one private and one public

The message to be sent is encrypted using the recipient’s public key
The message is decrypted using the recipients private key

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

What is the purpose of asymmetric encryption ?

A
  • To provide better security by using two different keys
  • Where one of the keys is used to encrypt the message and a matching key is used to decrypt the message
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the purpose of quantum cryptography ?

A

It uses the principles of quantum mechanics and the properties of photons to produce a virtually unbreakable encryption system which allows users to send virtually unhackable messages.

It can detect eavesdropping since the properties of the photons will change

It ensures the data security of data transmitted over fibre optic cables

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

What are the pros and cons of quantum cryptography ?

A

Pros

  • Virtually unhackable
  • Eavesdropping can be detected
  • Longer keys can be exchanged
  • The integrity of the key once transferred can be guaranteed as it can’t be copied or decrypted
  • To protect the security of data transmitted over fibre optic cables

Cons

  • Requires dedicated fibre optic line and specialist hardware
  • The cost of dedicated fibre optic line and specialist hardware is
    expensive
  • Limited range
  • Lacks features like digital signatures
  • Allows criminals and terrorists to hide their communications
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the purpose of SSL/TLS

A

Secure Sockets Layer/Transport Layer Security

  • The protocols provide communications security over the internet by providing encryption
  • They enable two parties to identify and authenticate each other so they can communicate with confidentiality and integrity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain how SSL/TLS protocols are used when a client-server communication is initiated.

A
  • The connection will be initiated by an application which will become the client
  • The application which receives the connection becomes the server
  • Every new session begins with a handshake
  • The client requests the digital certificate from the server, and the server will send it to the client
  • The client will verify the digital certificate and obtain the servers public key
  • The encryption algorithms will be agreed and the session keys will be generated
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How is the digital signature produced before the message is sent ?

A
  • The message is hashed using the agreed upon hashing algorithm to produce the digest
  • The digest is encrypted using the senders private key to form the digital signature
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How is digital signature used to verify a message when it is received ?

A
  • The message together with the digital signature are decrypted using the receivers private key
  • The digital signature received is decrypted using the senders public key to recover the digest sent
  • The decrypted messaged is hashed using the agreed hashing algorithm to produce the digest
  • If the two digests are the same then the message has not been altered
  • Otherwise it has been altered
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How is a digital certificate obtained ?

A
  • An enquiry is made to the CA
  • The enquirers details are checked by the CA
  • If they are verified by the CA, then a public key is agreed
  • The CA issues a certificate that includes the public key