The manpage for RSA_sign() says about the type parameter:

type denotes the message digest algorithm that was used to generate m. It usually is one of NID_sha1, NID_ripemd160 and NID_md5; see objects(3) for details.

I included the headers as suggested, but my IDE claims there are no variables starting with NID_ and I couldn't find the objects manpage anywhere on the internet.

What am I missing?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Apparently the objects manpage has never been written. Here's the bug report from whoopin' 2007.

As Dan Grossman helpfully pointed out, the objects manpage would document objects.h; including either that, or engine.h as the RSA manpage suggests, fixed the problem.

link|improve this answer
1  
Morale: don't write new code against the openssl crypto libs. – badp Feb 20 '11 at 15:16
feedback

Your Answer

 
or
required, but never shown

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