Conteúdo do Curso
Cyber Security Fundamentals
Cyber Security Fundamentals
1. Introduction to Cyber Security
Challenge: Implementing Caesar Cipher
Tarefa
Swipe to show code editor
Now, we will implement a simple function that provides data encryption using Caesar cipher.
Your task is to:
- Check if the character is alphabetic inside the
for
loop of thecaesar_cipher()
function. Use the.isalpha()
method to do it. - Set the value of the
key
variable equal to3
. - Call the
caesar_cipher()
and specify the required arguments (plaintext
andkey
).
Note
To provide decryption, we can use the same function but with other arguments:
caesar_cipher(encrypted_text, neg_key)
whereneg_key
=- key
.
Solução
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 3
Challenge: Implementing Caesar Cipher
Tarefa
Swipe to show code editor
Now, we will implement a simple function that provides data encryption using Caesar cipher.
Your task is to:
- Check if the character is alphabetic inside the
for
loop of thecaesar_cipher()
function. Use the.isalpha()
method to do it. - Set the value of the
key
variable equal to3
. - Call the
caesar_cipher()
and specify the required arguments (plaintext
andkey
).
Note
To provide decryption, we can use the same function but with other arguments:
caesar_cipher(encrypted_text, neg_key)
whereneg_key
=- key
.
Solução
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 3
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo