Beginner to Advanced CTF: Day 11 - Understanding the RSA Algorithm with Python
In this episode of the Beginner to Advanced CTF series, Cyber Teach 360 explores the RSA Algorithm through Python code. Join us as we break down the concepts step by step, making it accessible for learners at all levels.
About this video
------------------------- RSA Algorithm Via Python Code --------------------------------------------
In this video, we explained RSA and Proved this Algorithm Via Python Code.
RSA (Rivest Shamir Adleman) is an algorithm used by modern computers to encrypt and decrypt messages. It is an asymmetric cryptographic algorithm.
Python Code :
from Crypto.Util.number import inverse
p = 61
q = 53
m = int(input("Enter value of m : "))
n = p * q
phi =(p-1)*(q-1)
e = 17
d = inverse(e,phi)
print("value of d :"+ str(d))
c = pow(m,e,n)
print("value of c :"+ str(c))
m =pow(c,d,n)
print("vlaue of m : "+ str(m))
-----------------------------------------------------------------------------------
#RSA
#RSA Algorithm
#CTF For Beginner
#CTF
#Beginner To Advance CTF
#CTF For Beginner Bangla
#What is CTF
#Cryptography
#Cryptography In practical
RSA Algorithm Theory:https://youtu.be/Rk4qRUBM8q8
✅ Follow Us 🆗
🔈Facebook: https://www.facebook.com/foysalahammad.farabi
🔊Twitter: https://twitter.com/cyberteach3601
📗Github: https://github.com/cyberteach360
✅Facebook Helping Group:https://www.facebook.com/groups/cyberbanglalive
🆓 Facebook Page Link:https://www.facebook.com/cyberbanglaofficial21
😊 Thank you!!! 😊
Tags and Topics
This video is tagged with the following topics. Click any tag to explore more related content and discover similar videos:
Tags help categorize content and make it easier to find related videos. Browse our collection to discover more content in these categories.
3 user reviews
Write a Review
User Reviews
0 reviewsBe the first to comment...
Video Information
Total views since publication
User likes and reactions
Video length
Release date
Video definition
About the Channel
Related Trending Topics
LIVE TRENDSThis video may be related to current global trending topics. Click any trend to explore more videos about what's hot right now!
This video is currently trending in Poland under the topic 'dancing with the stars'.
Share This Video
SOCIAL SHAREShare this video with your friends and followers across all major social platforms including X (Twitter), Facebook, Youtube, Pinterest, VKontakte, and Odnoklassniki. Help spread the word about great content!