...
Example: #APPDIR#/my.key
| Info | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||
Note 2: The private key can be protected by password encryption. In this case, enter the password for the key in the "Pre shared key" item in the "TLS pre shared key" section. Note 3: Setting a password for the private key is possible with the OpenSSL utility. Example of execution: the input is the unprotected key my.key, the output is the password-encrypted key my_protected.key, and the encryption method AES-256 is used. openssl.exe rsa -aes256 -in my.key -out my_protected.key The following encryption methods can be used:
OpenSSL-3.4 library no longer supports the following encryption types:
If you use diacritics (national characters) in your password, you must set the Windows code page to UTF-8 before using the OpenSSL utility with the command chcp 65001 since in D2000, the texts are stored in UTF-8 encoding. |
...