Python में आसान डिक्रिप्शन: क्रिप्टोग्राफी हिंदी में 🚀 | Part 8
इस वीडियो में सीखें कि Python का उपयोग करके क्रिप्टोग्राफी में डिक्रिप्शन कैसे करें। हिंदी में आसान गाइड के साथ साइबर सुरक्षा और सिफर कोड को समझें।

Cybersploit
584 views • May 8, 2021

About this video
#cryptographyinhindi #cybersploit #cryptographybycybersploit #crypto #cybersecurity #ceasercipher #encryption #decryption
decryption using python script in hindi || cryptography in hindi part7
Program:
#A python program to illustrate Caesar Cipher Technique
def decrypt(ciphertext,key):
result = ""
# traverse text
for i in range(len(ciphertext)):
char = ciphertext[i]
# Encrypt uppercase characters
if (char.isupper()):
result += chr((ord(char) - key-65) % 26 + 65)
# Encrypt lowercase characters
else:
result += chr((ord(char) - key - 97) % 26 + 97)
return result
#check the above function
ciphertext = "e"
key = 2
print ("Text : " + ciphertext)
print ("Shift : " + str(key))
print ("plaintext: " + decrypt(ciphertext,key))
~~~~WELCOME FOR NEW SUBSCRIBER ! ~~~~
***************Thanks For Watching************
DISCLAIMER: This channel DOES NOT promote or encourage Any illegal activities, all content provided by cybersploit.This channel is meant for EDUCATIONAL PURPOSE only.
Copyright Desclaimer Under Section107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching , scholorship, and research . Fair use is a use permitted by copyright statute might otherwise be infringing. Non-profit.
########## Connect To Me ###########
website: https://www.cybersploit.in/shell-scri...
faceboob page: https://www.facebook.com/cybersploitskv/
facebook group: https://www.facebook.com/groups/22445...
instagram: https://www.instagram.com/its_skv/
twitter: https://twitter.com/cybersploit1
Telegram: https://t.me/cybersploit1
***********************************
Linux course beginners to advance in hindi:
https://www.youtube.com/playlist?list...
shell scripting complete tutorial in hindi:
https://www.youtube.com/playlist?list...
privilage escalation for beginners in hindi:
https://www.youtube.com/playlist?list...
CTF for beginner in hindi:
https://www.youtube.com/playlist?list...
windows command tutorial for beginners in hindi:
https://www.youtube.com/playlist?list...
cybersecurity guide for beginner in hindi:
https://www.youtube.com/playlist?list...
**********************************
decryption using python script in hindi || cryptography in hindi part7
Program:
#A python program to illustrate Caesar Cipher Technique
def decrypt(ciphertext,key):
result = ""
# traverse text
for i in range(len(ciphertext)):
char = ciphertext[i]
# Encrypt uppercase characters
if (char.isupper()):
result += chr((ord(char) - key-65) % 26 + 65)
# Encrypt lowercase characters
else:
result += chr((ord(char) - key - 97) % 26 + 97)
return result
#check the above function
ciphertext = "e"
key = 2
print ("Text : " + ciphertext)
print ("Shift : " + str(key))
print ("plaintext: " + decrypt(ciphertext,key))
~~~~WELCOME FOR NEW SUBSCRIBER ! ~~~~
***************Thanks For Watching************
DISCLAIMER: This channel DOES NOT promote or encourage Any illegal activities, all content provided by cybersploit.This channel is meant for EDUCATIONAL PURPOSE only.
Copyright Desclaimer Under Section107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching , scholorship, and research . Fair use is a use permitted by copyright statute might otherwise be infringing. Non-profit.
########## Connect To Me ###########
website: https://www.cybersploit.in/shell-scri...
faceboob page: https://www.facebook.com/cybersploitskv/
facebook group: https://www.facebook.com/groups/22445...
instagram: https://www.instagram.com/its_skv/
twitter: https://twitter.com/cybersploit1
Telegram: https://t.me/cybersploit1
***********************************
Linux course beginners to advance in hindi:
https://www.youtube.com/playlist?list...
shell scripting complete tutorial in hindi:
https://www.youtube.com/playlist?list...
privilage escalation for beginners in hindi:
https://www.youtube.com/playlist?list...
CTF for beginner in hindi:
https://www.youtube.com/playlist?list...
windows command tutorial for beginners in hindi:
https://www.youtube.com/playlist?list...
cybersecurity guide for beginner in hindi:
https://www.youtube.com/playlist?list...
**********************************
Tags and Topics
Browse our collection to discover more content in these categories.
Video Information
Views
584
Likes
17
Duration
7:40
Published
May 8, 2021
Related Trending Topics
LIVE TRENDSRelated trending topics. Click any trend to explore more videos.