decryption using python script in hindi || cryptography in hindi part8

Published: 07 May 2021
on channel: Cybersploit
659
17

#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:   / ​  
facebook group:   / 22445...​  
instagram:   / ​  
twitter:   / 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...
**********************************


On this page of the site you can watch the video online decryption using python script in hindi || cryptography in hindi part8 with a duration of hours minute second in good quality, which was uploaded by the user Cybersploit 07 May 2021, share the link with friends and acquaintances, this video has already been watched 659 times on youtube and it was liked by 17 viewers. Enjoy your viewing!