0

I am trying to get man page for OpenSSL rsa. However when I type in man rsa I get the bash command rsa instead. How do I specify in the man command such that the OpenSSL RSA page will be displayed?

ssgao
  • 5,151
  • 6
  • 36
  • 52

1 Answers1

1

I think you want to see the man page of RSA_new, RSA_free function.

Please try

 man 3 rsa

You will get the man page of RSA functions and structure description.

doptimusprime
  • 9,115
  • 6
  • 52
  • 90