Python: The Vigenere cipher with python
here is the code if you want your own! # #this was developed by me def encrypt(message, key): message = message key = key list1 = "" list2 = ...
About this video
here is the code if you want your own!
#
#this was developed by me
def encrypt(message, key):
message = message
key = key
list1 = ""
list2 = ""
for keys in key:
keytonumber = ord(keys)
for messages in message:
messagex = ord(messages) + keytonumber
messagey = chr(messagex)
list1 += messagey
print(list1)
def decrypt(message, key):
message = message
key = key
list1 = ""
list2 = ""
for keys in key:
keytonumber = ord(keys)
for messages in message:
messagex = ord(messages) - keytonumber
messagey = chr(messagex)
list1 += messagey
print(list1)
hash tags: #cipher #python #cryptography #Vigenere #hashing #coding
Video Information
Views
143
Total views since publication
Likes
4
User likes and reactions
Duration
6:40
Video length
Published
Aug 7, 2022
Release date
Quality
hd
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 TRENDING!
This video is currently trending in France under the topic 'h'.