0
0
Cybersecurityknowledge~10 mins

Public Key Infrastructure (PKI) in Cybersecurity - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the component that issues digital certificates in PKI.

Cybersecurity
The entity that issues digital certificates in PKI is called a [1].
Drag options to blanks, or click blank then click option'
ACertificate Authority
BFirewall
CRouter
DEncryption Key
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the CA with network devices like routers.
Thinking encryption keys issue certificates.
2fill in blank
medium

Complete the code to name the key type used to encrypt data that only the owner can decrypt.

Cybersecurity
In PKI, the [1] key is used to decrypt data encrypted with the public key.
Drag options to blanks, or click blank then click option'
APublic
BSymmetric
CPrivate
DSession
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the public key with the private key.
Thinking symmetric keys are part of PKI.
3fill in blank
hard

Fix the error in the statement about PKI certificate expiration.

Cybersecurity
A digital certificate in PKI is valid indefinitely until revoked or [1].
Drag options to blanks, or click blank then click option'
Aexpired
Bencrypted
Crenewed
Dissued
Attempts:
3 left
💡 Hint
Common Mistakes
Assuming certificates never expire.
Confusing expiration with renewal.
4fill in blank
hard

Fill both blanks to complete the PKI process description.

Cybersecurity
When a user wants to send encrypted data, they use the recipient's [1] key to encrypt it, and the recipient uses their [2] key to decrypt it.
Drag options to blanks, or click blank then click option'
Apublic
Bprivate
Csession
Dshared
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up which key is public and which is private.
Using session or shared keys in this context.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension that maps domain names to their certificate status if the certificate is {{BLANK_3}}.

Cybersecurity
cert_status = { [1]: [2] for [1], [2] in certificates.items() if [2] == '[3]' }
Drag options to blanks, or click blank then click option'
Adomain
Bstatus
Cvalid
Dcertificates
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect variable names.
Not filtering by the correct certificate status.