Encrypted File Transfer via Sockets in Python

Encrypted File Transfer via Sockets in Python

NeuralNine

1 год назад

21,012 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@oliverli9630
@oliverli9630 - 09.10.2023 14:46

awesome!!!!

Ответить
@dankeroner
@dankeroner - 12.09.2023 06:27

"pip install pycrypto" failed
"pip install pycryptodome " worked perfectly

close the file after reading it to prevent encoding and decoding errors

with open('"file", "rb") as f:

data = f.read()

f.close()
....
....
....

Thanks for the content bruv

Ответить
@pythonmini7054
@pythonmini7054 - 06.08.2023 15:06

It only works on txt file not on docx files

Ответить
@JNET_Reloaded
@JNET_Reloaded - 02.06.2023 19:49

btw mkv is total shit i always stick with mp4, least then it plays on the player side!

Ответить
@JNET_Reloaded
@JNET_Reloaded - 02.06.2023 19:21

wheres the link to the code whats the point in having github if your not going to make a repo for every project on yt makes no fkin sense!

Ответить
@pyalgoGPT
@pyalgoGPT - 31.12.2022 08:42

It will be best of both world if a Flet app is made ,which provides this feature !

Ответить
@tips1483
@tips1483 - 20.12.2022 06:54

Love the video, I'd love to see this with an encryption implementation similar to SSL!

Ответить
@atsbmnt7279
@atsbmnt7279 - 20.12.2022 02:41

very nice @NeuralNine Thank you

Ответить
@paulthomas1052
@paulthomas1052 - 19.12.2022 12:19

Great tutorial - really enjoying your sessions. Thanks :)

Ответить
@julianmahler2388
@julianmahler2388 - 18.12.2022 16:32

I like your channel, don't get me wrong. But there's a couple of issues here. An AES key is not something you should think of yourself. Take a strong key derivation function and a random salt. Then use a strong password to derive the AES key. I understand that this makes things more complicated, especially in the context of a tutorial. But implying that it's the user's job to think of an AES key with exactly 16 bytes is misleading (btw, 24 and 32 byte keys should work, too). Same with the nonce. The nonce has to be generated randomly and must never be reused, especially not in combination with the same key. Also, EAX mode is authenticated encryption. Its purpose is to authenticate the message and to guarantee that it was not messed with. If you're not providing an authentication tag in order to check the authenticity of the message, non-authenticated modes like CTR seem to be a better choice than EAX.

Ответить
@wecheat1544
@wecheat1544 - 18.12.2022 10:57

More Encrypted like content, its very cool.

Ответить
@alexandruspinu2484
@alexandruspinu2484 - 17.12.2022 17:54

Neat

Ответить
@tahiralauddin79
@tahiralauddin79 - 17.12.2022 17:53

Your content is always good

Ответить