Encrypt/decrypt any file you want in Python using AES

preview_player
Показать описание
in this video I show you how you can encrypt and decrypt any file you want using the AES encryption algorithm in Python
Рекомендации по теме
Комментарии
Автор

Sorry for the late reply ...
Many things happened in my life the last years. But no worries, everything is more than okay.
I will answer your question very soon
And also work on new videos which probably will be published in May

Stay tuned ;-)

balicoding
Автор

Thanks a lot sir, you video help me in my final year project, I sincerely appreciate every minute in had put into this video

johnokpo
Автор

Thanks sir🙏!! Your video helped me a lot.!

Panorama
Автор

if write this code on spider ide . will it work ? is this a correct source code?

aounraza
Автор

TypeError: can only concatenate str (not "bytes") to str

omkargore
Автор

can u make a vid of these IV's putting in a data base?

theblackzeini
Автор

great video!. Quick question, how will you integrate RSA code on it?

dataengrprospect
Автор

if I put the IV code on an online conversion site, it tells me that the length of the IV code should be 16. My IV code is invalid. How can I limit the length of IV in your exercise? Thanks for the reply.

TheOlddog
Автор

Thank you so much it really helped me. But i couldn't convert this to CTR mode... :(

ribboi
Автор

don't use ECB, it's security is weaker than the other modes like CBC or GCM.

xEvD
Автор

I'm sorry to bother you, here is my code to open .dat file in Linux
with open('datafile.dat', 'r') as entry:
data = entry.read()

But I don't know why I got this error, could you give me some advice?

Traceback (most recent call last):
File "dec.py", line 11, in <module>
data = entry.read()
File "/usr/lib/python3.8/codecs.py", line 322, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd1 in position 0: invalid continuation byte

andywong
Автор

good job, but not work with big files

alexmantana
Автор

ModuleNotFoundError: No module named 'Crypto.Util.Padding'

omkargore