cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP Encryption Key - Database - SSFS

ily83
Newcomer
0 Kudos
221

Hi all,

In the command line:

rsecssfx generatekey -getPlainValueToConsole

What is the format of the key generated? (AES 256 bits)?

Can this command

rsecssfx changekey <new key>

be used with a key generated externally? with openssl or other? In this case what would be the format.

Kind regards,
ily83

 

Accepted Solutions (0)

Answers (1)

Answers (1)

Maciej__Galica
Explorer
0 Kudos

When you run:


rsecssfx generatekey -getPlainValueToConsole
It generates a random symmetric key used for internal encryption purposes in SAP (example: for credentials, connection passwords).

generated key is 256-bit AES key (32 bytes, hex-encoded).

Typically printed as a 64-character hexadecimal string (each byte = 2 hex digits).

Thanks