Город МОСКОВСКИЙ
00:03:23

Install OpenSSL on Windows XP and generate Encryption Keys

Аватар
Секреты Рукоделия
Просмотры:
57
Дата загрузки:
26.09.2023 01:31
Длительность:
00:03:23
Категория:
Лайфстайл

Описание

This gives an overview of loading OpenSSL and generating keys used for encryption.

This is the keygen.cmd file text:
Echo Confirm creation of P12 key named %1
pause

set OPENSSL_CONF=C:\OpenSSL-Win64\bin\openssl.cfg
c:
cd\OpenSSL-Win64\bin
Call openssl genrsa -des3 -out %1.key 2048
Call openssl req -new -key %1.key -out %1.csr
call openssl req -new -nodes -keyout %1.key -out %1.csr -newkey rsa:2048
call openssl x509 -req -days 365 -in %1.csr -signkey %1.key -out %1.crt
call openssl pkcs12 -export -in %1.crt -inkey %1.key -out %1.p12 -name “%1_Key"

Echo Take note of where you saved the CC1.p12 file
pause

Рекомендуемые видео