Professional Data Encryption in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ก.ย. 2024

ความคิดเห็น • 41

  • @amaansiddiqui2376
    @amaansiddiqui2376 2 ปีที่แล้ว +17

    Bruv, I LOVE your videos. Please don't stop making them, I'll remain a forever faithful viewer.
    Edit: Although I'd appreciate if you explained your code a bit more in detail !

  • @bloodyyjohnson7004
    @bloodyyjohnson7004 2 ปีที่แล้ว +3

    I've been waiting this video for so long, thank u 👌🔥

  • @MrCipek1221
    @MrCipek1221 2 ปีที่แล้ว +1

    This is the type of content I've been waiting for so long :D
    Thank you so much!
    Have a nice day :)

  • @heliosmetamorphia
    @heliosmetamorphia 4 หลายเดือนก่อน

    Excellent vidéo ! Thank you man !!

  • @yandelyano
    @yandelyano 6 หลายเดือนก่อน +9

    As someone who has never tried encryption, this video is a bit too advanced, none of the basic concepts are explained. It's almost a narration of what is being typed.

    • @user-vp4jw4rw9u
      @user-vp4jw4rw9u 4 หลายเดือนก่อน +4

      I mean it’s titled “professional data encryption in python.”

  • @jakuwoks
    @jakuwoks ปีที่แล้ว

    Very useful video! Thanks!

  • @1UniverseGames
    @1UniverseGames 2 ปีที่แล้ว +1

    Nice video, would you like to make a video on Intel SGX encryption security?

  • @kamisama5783
    @kamisama5783 2 ปีที่แล้ว +3

    can you teach us how to build Memory-Resident Python script

  • @Wrekals
    @Wrekals ปีที่แล้ว +1

    cant get the Crypto to work, even with everything installed and up to date ... that prob the problem ? i do have 3.10 python

  • @claascode6593
    @claascode6593 2 ปีที่แล้ว

    Your are Amazing bro keep making such great Content

  • @scottlee38
    @scottlee38 2 ปีที่แล้ว

    Awesome channel!

  • @portfedh
    @portfedh ปีที่แล้ว +1

    Great video! Thanks! How should one decide which encryption package to use? I also found a python library called 'cryptography' and 'open ssl'.

  • @jakuwoks
    @jakuwoks ปีที่แล้ว

    TH-cam sliced the video between 1:17 and 1:51 as "picryptodome" instead of "pycryptodome"

  • @guilherme5094
    @guilherme5094 2 ปีที่แล้ว

    Nice!

  • @Hemant-Dev
    @Hemant-Dev ปีที่แล้ว

    after installing pycryptodom i am not able to import crypto into my file. i cant see any package suggestion

  • @mayankjoshi9723
    @mayankjoshi9723 11 หลายเดือนก่อน

    why there is additional b' ' wrapped around the msh after decrypting?

    • @MrMinecraftsamuel
      @MrMinecraftsamuel หลายเดือนก่อน

      to let python know its a bytes string

  • @SachinK-s7d
    @SachinK-s7d ปีที่แล้ว

    Can we able to encrypt Images or any other Data using This Program ...?

  • @knidd
    @knidd 2 ปีที่แล้ว +1

    why not just use fernet?

  • @ryanthebomb
    @ryanthebomb 2 ปีที่แล้ว

    I'm using linux and it says no module named crypto what do I do

  • @Mark-db2re
    @Mark-db2re ปีที่แล้ว

    I am trying to build an app that could send and receive money. Thanks for assistance

  • @disrael2101
    @disrael2101 2 ปีที่แล้ว +2

    Is it how backend servers save and check our passwords?

  • @Nacht4ktiv
    @Nacht4ktiv ปีที่แล้ว

    CBC mode ist not recommended anymore! Beware.

  • @allenchandler2383
    @allenchandler2383 ปีที่แล้ว

    is this 256 or 128?

  • @skrux9707
    @skrux9707 ปีที่แล้ว +4

    Doesn't really explain what's going on or why we're using what we're using, but cool stuff I guess..

    • @florinbujoreanu1020
      @florinbujoreanu1020 10 วันที่ผ่านมา

      I bet he doesn't have any idea what he's doing, basically typing examples from the internet that don't provide an explanation too :)))

  • @thepalogaming1913
    @thepalogaming1913 2 ปีที่แล้ว +1

    Probably not the first

  • @originalbinaryhustler3876
    @originalbinaryhustler3876 9 หลายเดือนก่อน

    ❤❤❤

  • @karim.elmasry.42
    @karim.elmasry.42 4 หลายเดือนก่อน

    @3:26 Ellen should not exceed 20

  • @roselenda3594
    @roselenda3594 ปีที่แล้ว

    I love you

  • @SkyFly19853
    @SkyFly19853 2 ปีที่แล้ว

    But I have a question:
    how to encrypt and close a Python game you just make?
    You wanna make a game in Python and sell it, but you wanna make it closed source, so people can NOT pirate.
    Do you have a tutorial?

    • @NeuralNine
      @NeuralNine  2 ปีที่แล้ว +4

      Technically speaking you can compile it sort of to an executable. But in general Python is not meant for that.
      For closed source game development I would go with C#, C++ etc

    • @SkyFly19853
      @SkyFly19853 2 ปีที่แล้ว

      @@NeuralNine
      I understand.
      I plan to make my Python exe file and use Cython for C/C++ extension.

    • @GameSmilexD
      @GameSmilexD 2 ปีที่แล้ว +1

      @@SkyFly19853 python is a scripting language, thus far invented for putting stuff together quickly and prototyping, it doesnt present the same performance or stability of other languages like c for this reason; there are languages specifically developed for writting games as well as general purpose languages like c, cpp., cs that can are widely used for making this sort of applications and therefore also have great resources and templates available

    • @GameSmilexD
      @GameSmilexD 2 ปีที่แล้ว

      you can just use a compiled language from the start and research about debugging avoidance techniques so its harder to crack

    • @SkyFly19853
      @SkyFly19853 2 ปีที่แล้ว

      @@GameSmilexD
      I see.

  • @florinbujoreanu1020
    @florinbujoreanu1020 10 วันที่ผ่านมา

    This is just reading the code you write, but no explanation. Why bother make the video then?

  • @aryankothari1725
    @aryankothari1725 2 ปีที่แล้ว

    :(