Symmetric Encryption With OpenSSL

Поделиться
HTML-код
  • Опубликовано: 28 ноя 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 👍👍

  • @developer_7735
    @developer_7735 3 года назад +1

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

  • @athithakarikalan1222
    @athithakarikalan1222 3 года назад +1

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

  • @guilherme5094
    @guilherme5094 3 года назад

    That was really good. Thanks.

  • @saurabhchaurasia7937
    @saurabhchaurasia7937 Год назад

    Very helpful Thank you

  • @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

  • @minkhant8634
    @minkhant8634 3 года назад

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

  • @johnjhonyk8976
    @johnjhonyk8976 3 года назад

    Neuralnine what font size and name you use on your terminal

  • @sleexox
    @sleexox 3 года назад

    Does NeuralNine play CTFs?

  • @mefodymo7456
    @mefodymo7456 3 года назад +1

    Cool

  • @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