Skip to main content
Skip table of contents

Sign with OpenSSL CMS Command

Follow the instructions to sign a file with OpenSSL CMS.

Download Signing Certificate

  1. Log in to the Signum Admin Web Console.

  2. Download the certificate you want to sign with by clicking the Actions menu on the Certificates table.

image-20240919-171857.png
  1. Use the signum-util tool to list certificates:

CODE
signum-util lc
CODE
Subject CN     : Signum-RSA-3072
    Issuer CN      : DemoRoot-G2
    Valid Until    : 2029-04-23
    Valid From     : 2024-04-24
    Thumbprint     : 170570A1D56FBB5A4CC780B69ACAEF94010D5DAA
Subject CN     : Signum-RSA-4096
    Issuer CN      : DemoRoot-G2
    Valid Until    : 2029-04-23
    Valid From     : 2024-04-24
    Thumbprint     : 3AB5BFB91DFBB46CF765D5BEE51429618C4857DD
Subject CN     : Signum-RSA-2048
    Issuer CN      : DemoRoot-G2
    Valid Until    : 2030-02-05
    Valid From     : 2025-02-06
    Thumbprint     : F78AE7871FEF1D0CF3EFFB58E9CC85F261438D2B

Sign

  1. Create a test file to sign:

CODE
echo "Some Data to Sign" >> somefile.txt
  1. Run the following command, including the thumbprint of the certificate you want to sign with:

CODE
openssl cms -sign -in somefile.txt -out signed_message.p7s -signer Signum-4096-Cert.pem  -inkey 3AB5BFB91DFBB46CF765D5BEE51429618C4857DD -engine pkcs11 -keyform engine
CODE
Engine "pkcs11" set.

Verify

Run the following command to verify the signature:

CODE
openssl cms -verify -in signed_message.p7s -content somefile.txt -certfile Signum-4096-Cert.pem -purpose any -CAfile BenDemoRootG2-chain.pem

The command should return the following verification:

CODE
Some Data to Sign
CMS Verification successful
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.