I'm using this to verify a JWT. openssl dgst -verify public_key.pem -sha256 -signature signature.file signed_data.file It works great. Instead of using an actual signature.file, is there a way to tell openssl to use a string instead? It would be nice to eliminate the need to create the intermediary signature file. Thank you