The White House wants to ‘cryptographically verify’ videos of Joe Biden so viewers don’t mistake them for AI deepfakes::Biden’s AI advisor Ben Buchanan said a method of clearly verifying White House releases is “in the works.”

  • 0xD
    link
    fedilink
    English
    arrow-up
    10
    ·
    5 months ago

    I’ll be talking about digital signatures which is the basis for such things. I assume basic understanding of asymmetric cryptography and hashing.

    Basically, you hash the content you want to verify with a secure hashing function and encrypt the value with your private key. You can now append this encrypted value to the content or just release it alongside it.

    To now verify this content they can use your public key to decrypt your signature and get the original hash value, and compare it to their own. To get that, they just need to hash the content themselves with the same function.

    So by signing their videos with the white house private key and publishing their public key somewhere, you can verify the video’s authenticity like that.

    For a proper understanding check out DSA :)

    • Natanael@slrpnk.net
      link
      fedilink
      English
      arrow-up
      2
      ·
      5 months ago

      Only RSA uses a function equivalent to encryption when producing signatures, and only when used in one specific scheme. Every other algorithm has a unique signing function.