Digital Signature example using OpenSSL

Поделиться
HTML-код
  • Опубликовано: 27 авг 2024
  • What is a digital signature? This walkthrough demonstrates how to create a private key, public key, digitally sign a document, and verify.
    More information can be found on my little blog: www.digioli.co...
    #encryption #digitalsignature #openssl

Комментарии • 19

  • @tomasznowak2032
    @tomasznowak2032 Год назад +1

    Great, thank you!

  • @minhvokhai3162
    @minhvokhai3162 2 года назад +2

    helped with my uni asignment, much thanks :D

  • @iasontzortzis9472
    @iasontzortzis9472 3 года назад +3

    Great video ! Thank you helped me solve a university project

  • @abdulrashid2023
    @abdulrashid2023 Год назад +1

    Super useful. thanks

  • @svsv123
    @svsv123 2 месяца назад +1

    Hi there! Thanks for the wonderdul explanation. Is it possible to get original digest from signature using Public key? If yes then how?

    • @MarkRobson99
      @MarkRobson99  2 месяца назад +1

      No not possible. You only verify the signature using the public key and the digest

  • @abab-ge2tu
    @abab-ge2tu 2 года назад +1

    Are signatures appended to the message and the keys must produce the digest for the message with the appendage for verification, similar to salting a password?

    • @MarkRobson99
      @MarkRobson99  2 года назад

      Your public key is publicly available i.e. any other party should know that this public key is yours. The message is just the message. If you want to show that you agree to the message, you sign it. That signature is used in combination with your public key, plus the message itself, to verify that you signed it. This is where non-repudiation is - you must have agreed if you used your private key to sign

  • @Emir-wr1cp
    @Emir-wr1cp Год назад

    how can we sign an xml file using a already generated csr file. for example I have a csr generated and I want it to sign an xml document so is there any command?

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

    Hi there! How can you show the digital signature in a hex format?

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

      Good question. I'm not sure. Might have to convert binary into hex using another tool?

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

      Oh, I completely forgot, I have an example using hex on my website: www.digioli.co.uk/digital-signature-with-openssl/