How To Use ROT13 Encryption In Python (Encryption For Beginners)

preview_player
Показать описание
In this video we will be learning how we can use ROT13 encryption in Python. It's one of the most beginner friendly encryptions out there, so it's a perfect place to start with learning about encryptions!

▶ Become job-ready with Python:

▶ Follow me on Instagram:

00:00 What is ROT13?
00:19 Preview of the program
00:48 Creating the ROT13 encoder
05:18 Using our ROT13 encoder
05:36 Python has a built-in ROT13 encoder?
07:02 More encryption videos?
07:19 Thanks for watching!
Рекомендации по теме
Комментарии
Автор

ROT13!!!! I haven’t heard that in like decades. Fun little exercise! Thanks for sharing.

cody_codes_youtube
Автор

What setting or extension is it that shows the keyword arguments even if they're used positionally in the code (at 6:07)? It's a very cool feature.

bessx
Автор

Haven't watched the whole yet, but my approach to rot 13 is

letters = ascii_lowercase

table = letters.maketrans(letters[13:], letters[:13])
then make a dict to to store whether a value is uppercase or not
And then lower it and translate it
And then uppercase chars which are uppercased

Lol-iluc
Автор

Wouldn't rot13_translator() be a perfect time to use the lambda decorator that makes it only run once? Since the output will always be the same, you don't need to potentially execute it more than once.

ConstantlyDamaged
Автор

Hey! Which app or software do you use to record your videos?

notengousuario
Автор

I would NEVER say rot13 is encryption. I would rather say it is obfuscation.
-> This message has been rot13 twice for your security

apefu
Автор

that's actually encoding, not encrypting

EpicNoobx
Автор

Bruh anyone can do this even more efficient than this lol

SolathPrime
Автор

Are there any practical use cases of this ROT13 ? It is not a very secured encryption method.

ButchCassidyAndSundanceKid
welcome to shbcf.ru