Showing posts with label Signature Verification using OpenSSL. Show all posts
Showing posts with label Signature Verification using OpenSSL. Show all posts

Wednesday, December 2, 2020

Signature Verification using OpenSSL

generate RSA Private Key

 #openssl genrsa -out private.pem 2048


Generate RSA public Key from Private Key

#openssl rsa -in private.pem -outform PEM -pubout -out public.pem


Sing Operation using RSA Private Key

#openssl sha1 -sign private.pem test > sig.bin

Verify Operation using RSA Public Key

#openssl sha1 -verify public.pem -signature sig.bin test


Top ChatGPT Prompts for DevOps Engineers

  As a DevOps engineer, your role involves juggling complex tasks such as automation, infrastructure management, CI/CD pipelines, and troubl...