Symmetric Encryption With OpenSSL

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

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

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

    Very practical and to the point. Trying to read the -help for openssl gets you nowhere. Thank you very much.

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

    You can make something similar but with divided key. You generate let's say 8 keys and give one to all your family members. Now they can decrypt your secret only if at least six of them use their key at the same time. This algorithm is used when you don't trust someone alone but you trust when multiple people decide to decrypt message at the same time.

  • @codingguy7879
    @codingguy7879 3 ปีที่แล้ว

    Your content is way better than any other youtube channels. keep it up 👍👍

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

    You are awesome 😇 ... Very Helpful to...

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

    @neuralnine
    Is it possible to broadcast a TV channel online using programming?

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

    Very helpful Thank you

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

    That was really good. Thanks.

  • @minkhant8634
    @minkhant8634 3 ปีที่แล้ว

    Yeah... I prefer using (Advanced Encryption Standard)AES-256 for symmetric too but just use asymmetric, it's not that complicated

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

    Cool

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

    Many thanks for the video. When I run the your openssl command on Windows 11, it fails complaining of the -pbkfd2 switch (unknown option). Googling this reveals nothing as far as I can see. Any suggestions, please?

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

      You wrote -pbkfd2 it's -pbkdf2

  • @johnjhonyk8976
    @johnjhonyk8976 3 ปีที่แล้ว

    Neuralnine what font size and name you use on your terminal

  • @sleexox
    @sleexox 3 ปีที่แล้ว

    Does NeuralNine play CTFs?

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

    pl let me know the password for encryption and decryption AES 256? in OpenSSL

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

    the command nv is not working, can you help me please!

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

      nv is an alias in the terminal's config. That actually stands for another command. For example, nvim, vi or nano.

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

    first! :)

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

    privatni ključ
    openssl genrsa -out Private.key 2048
    public ključina
    openssl rsa -in Private.key -pubout -out Public.key
    dekriptiranje pitanja:
    openssl rsautl -decrypt -inkey Private.key -in pitanje.txt -out pitanje.txt
    pitanje-ajkgsdl
    ključ dekriptiranje:
    openssl enc -d -k 'lozinka' -in Assd.enc -out adnfgjka.key -aes-128-ecb
    nano odgovor.txt
    openssl rsautl -encrypt -in odgovor.txt -out odgovor.txt -pubin -inkey Public.key