Generate X.509 key pair and fingerprints on your Windows machine
Generate the X.509 key pair and its fingerprint on your Windows machine that you upload to the Oracle HCM tenant.
Before you begin
Role required: admin
Ensure that OpenSSL is installed.
Procedure
On your Windows machine, copy the path to the
binfolder under theOpenSSL-Win<bit>folder.Run the Command Prompt as an administrator.
On the prompt, use the
cdcommand to change the current directory to thebinfolder.To generate the private key, run the command
openssl genrsa -out private.key 2048.The private is generated under the bin folder.
To generate the public key, run the command
openssl req -new -x509 -key private.key -out publickey.cer -days 365.Enter the information.
You can choose to leave one or more fields empty.
Information fields on command prompt.
The public key is generated in the bin folder.
To generate the fingerprint, run the command
openssl x509 -sha1 -in publickey.cer -noout -fingerprint.The fingerprint is generated in the form of a hexadecimal value.
Convert the hexadecimal value to a Base64 value.
Copy the Base64 value and store in a secure place.
You need the Base64 value when you configure the connections and credential records on your ServiceNow instance.