Generate RSA Private Key file during application startup

Generating RSA private key file during application startup if rsa key
file is not found. Here, the rsa private key file is a hidden file
(.rsaprivkey.pem) and placed in certificate file install path which is
given during application startup.

This generated rsa private key file will be used to create private key
and csr files if certificate manager received the generateCSR request
with key pair algorithm as RSA. So, the every time rsa key generation
is avoided, because rsa key is generated with keybitlength as 2048
during application startup.

From this change, certificate manager will support only 2048 as key
bit length to generated rsa key pair. If user given other than 2048,
application will throw error.

Tested By:
 - Added below unit test case
    * To check rsa private key file is generated during application
      startup.
    * To validate unsupported key bit length.
    * To check rsa private key file is present or not.
    * To check rsa private key is picked from rsa private key file
      while receive the generateCSR request.
 - Manual test case
    * Restarted certificate manager application to check rsa private
      key file is generated.
      systemctl restart phosphor-certificate-manager@bmcweb.service

    * Invoked genearteCSR request by using curl command to check
      generated rsa private key file is used to create private key
      and csr file.
      curl -c cjar -b cjar -k -H "X-Auth-Token: $bmc_token" -X POST
      https://${bmc}/redfish/v1/CertificateService/Actions/
      CertificateService.GenerateCSR/ -d @generate_https.json

Change-Id: I876779f1ab36f52774c52041d68304a610ea261b
Signed-off-by: Ramesh Iyyar <rameshi1@in.ibm.com>
diff --git a/configure.ac b/configure.ac
index b56b83a..81888b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -128,6 +128,10 @@
 AS_IF([test "x$PRIV_KEY_FILE_NAME" == "x"], [PRIV_KEY_FILE_NAME="privkey.pem"])
 AC_DEFINE_UNQUOTED([PRIV_KEY_FILE_NAME], ["$PRIV_KEY_FILE_NAME"], [The private key file])
 
+AC_ARG_VAR(RSA_PRIV_KEY_FILE_NAME, [The rsa private key file.])
+AS_IF([test "x$RSA_PRIV_KEY_FILE_NAME" == "x"], [RSA_PRIV_KEY_FILE_NAME=".rsaprivkey.pem"])
+AC_DEFINE_UNQUOTED([RSA_PRIV_KEY_FILE_NAME], ["$RSA_PRIV_KEY_FILE_NAME"], [The rsa private key file])
+
 # Create configured output
 AC_CONFIG_FILES([Makefile test/Makefile])
 AC_OUTPUT