XOR Cipher Encryption and Decryption in Python

preview_player
Показать описание
XOR Cipher in Python
00:02 - Encryption
01:47 - testing encryption
02:07 - Decryption
03:23 - Decryption Testing

xor encryption and decryption using python 3 programming language

xor cipher is a simple cipher, in which each individual letter of message is XOR-ed with key, to get encrypted text.
In this video we get cipher text in hexadecimal
Рекомендации по теме
Комментарии
Автор

Source code link can be found in video description

voxelpixel
Автор

This algorithm is amazing, however it isn't compatible with ASCII-extended. So if you were to encrypt a message such as "Ç" and the key is "a" it will return a hexadecimal value(which is a wrong) but using the decryption method (turning the hexadecimal back to plain-text) it will cause an error .Is it possible to fix this error?

acridg