vote up 0 vote down star

I'm trying to verify a file that was signed by hashing with SHA-1 and encrypting the hash with an RSA private key.

Obviously I'm using the RSA public key to verify. The key is in DER format.

The signature verification works correctly using Java's Signature class.

The openssl command I'm trying (and the result) is:

       ~/Downloads/openssl-1.0.0-beta3/apps/openssl pkeyutl -in encryptedZip.bin 
-keyform DER -verify -sigfile savedDigitalSignature.txt -pubin -inkey public.der
    WARNING: can't open config file: /usr/local/ssl/openssl.cnf
    Signature Verification Failure

I don't see anything in the openssl configuration file that would apply, so I don't think that warning is significant.

The savedDigitalSignature.txt file contains the signature bytes.

My theory is that openssl is looking for the digital signature to be in some specific file format, but I haven't found anything in the documentation indicating what that should be.

Thoughts?

flag

Your claim "... was signed by hashing with SHA-1 and encrypting the hash with RSA ..." sounds suspicious, since encrypting and signing are not the same operation. But since your java library accepts the signature I'd like to know which java library you are using? – Accipitridae Oct 8 at 7:50
My apologies (and thanks) to those who answered. What I'm doing is using the Java Signature class to sign. I assumed it was doing that by hashing the data, and then encrypting the hash, but I see now that that assumption was incorrect. – Wade Williams Oct 14 at 15:04

3 Answers

vote up 0 vote down check

This command is very low level. You have to make sure everything is in the right format for it to work,

  1. The input signature (-sigfile) must be the binary signature. For RSA, the padding must be PKCS#1.
  2. The input data must be the binary digest. If you sign it with SHA1, this file can only contain 20 bytes.
  3. Public key must be in X.509 encoded SubjectPublicKeyInfo in DER or PEM format.
link|flag
vote up -1 vote down

Java expects an RSA signature to follow PKCS #1: a sequence of the digest algorithm and the digest, then signed (encrypted with the RSA private key).

It may be that pkeyutl is expecting only the digest, not an ASN.1 structure, but that would be a surprising disregard for interoperability. In either case, once the data is "signed", the "signature" output will appear similar…just a random string of octets.

Please post a sample signature generated by pkeyutl, together with a public key that will verify it, and the file to be verified.

link|flag
-1: Signing and encryption with the private key are not the same thing. – Accipitridae Oct 8 at 7:56
PKCS #1 says, "For digital signatures, the content to be signed is first reduced to a message digest with a message-digest algorithm (such as MD5), and then an octet string containing the message digest is encrypted with the RSA private key of the signer of the content." The difference between an RSA encryption and RSA signature is the block type prefixed to the data before encryption. – erickson Oct 8 at 8:38
Sorry for being pedantic here. But mixing encryption and signing is a common cause for confusion and serious errors. It may also be the cause for the OPs problem. The text snippet that you cite appears to be from the 1993 version of the PKCS#1 standard. The RSA Labs have long ago noticed their mistake and none of the newer versions of the standard contain this unfortunate formulation anymore. – Accipitridae Oct 8 at 20:47
Actually, they do. While version 2.1 does denote separate cryptographic primitives (RSASP1/RSAVP1) for signatures, in describing them, it points out that, "The main mathematical operation in each primitive is exponentiation, as in the encryption and decryption primitives of Section 5.1. RSASP1 and RSAVP1 are the same as RSADP and RSAEP except for the names of their input and output arguments; they are distinguished as they are intended for different purposes." They then proceed to duplicate the formula from the preceding section on RSADP and RSAEP. – erickson Oct 8 at 21:01
Please read the standard carefully. Do do no longer claim that signing a message involves encryption. Anyway this is not the main point. The main observation is that some people actually use an encryption to what they think is equivalent to a signature thus potenially leading to an insecure implemenation. Hence it is important to NOT describe signing as encryption with the private key. – Accipitridae Oct 8 at 21:18
show 5 more comments
vote up 0 vote down

I haven't used OpenSSL-1.0.0-beta3 yet, so I'm not familiar with pkeyutl, but the dgst command also generates and verifies digital signatures, and it expects signatures to be in plain, completely unadorned binary.

Eg, for an RSA signature, it expects a binary blob representing a single BigNum. Looking at the maual page for pkeyutl, it seems likely that it works the same way. An easy test would be to use pkeyutl to sign something, and inspect the output (if the size in bits is the same as your RSA key length, it's a plain BigNum - if it's bigger, try using dumpasn1 to see if its a DER format).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.