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?
Asked
Active
Viewed 55 times
0

ssgao
- 5,151
- 6
- 36
- 52
-
Try `man man` perhaps? – n. m. could be an AI Apr 29 '13 at 02:47
1 Answers
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