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 = ...

TheTechyKid•143 views•6:40

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

Related Trending Topics

LIVE TRENDS

This 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'.

Share This Video

SOCIAL SHARE

Share this video with your friends and followers across all major social platforms. Help spread the word about great content!