Generate the X.509 key pair and its fingerprint on your Windows machine that you upload to the Oracle HCM tenant.
Prozedur
-
On your Windows machine, copy the path to the bin folder under the OpenSSL-Win<bit> folder.
-
Run the Command Prompt as an administrator.
-
On the prompt, use the cd command to change the current directory to the bin folder.
-
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.

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.