Install OpenSSL on Windows and use OpenSSL to generate public and private keys

Install OpenSSL on Windows and use OpenSSL to generate public and private keys

1. OpenSSL official website

Official download address: https://www.openssl.org/source/

2. Windows installation method

The OpenSSL official website does not provide a Windows version installation package, but you can choose tools provided by other open source platforms. For example http://slproweb.com/products/Win32OpenSSL.html

Taking this tool as an example, the installation steps and usage methods are as follows:

2.1 Select the appropriate 32-bit or 64-bit version to download, for example, Win64OpenSSL_Light-1_0_2h.exe:


Install OpenSSL on Windows

2.2 Set environment variables. For example, if the tool is installed in C:\OpenSSL-Win64, copy C:\OpenSSL-Win64\bin to Path.


widnows system sets OpenSSL environment variables

2.3 Open the command line program cmd (run as administrator) and run the following command:

The path here is the save address

Generate public and private keys using openssl

Generate a private key: openssl genrsa -out rsa_private_key.pem 1024

Generate a public key: openssl rsa -in rsa_private_key.pem -pubout -out rsa_public_key.pem

You may also be interested in:
  • Windows installation and configuration of C/C++ (VS2017) OpenSSL development environment configuration tutorial
  • How to enable openssl in php
  • How to install Nginx under Linux (pcre and openssl)
  • Detailed explanation of how to use OpenSSL instead of Mcrypt for encryption and decryption in PHP 7.1
  • PHP implements encryption and decryption methods based on openssl
  • How to install openssl extension in php7
  • Detailed explanation of using openSSL library AES module to implement encryption function in C language
  • Detailed explanation of the installation of OpenSSL in Linux (centos7)
  • How to add openssl module to PHP without recompiling PHP
  • Linux openssl basic introduction
  • A Python script to detect the OpenSSL Heartbleed vulnerability
  • PHP RSA encryption and decryption example based on OpenSSL
  • Detailed explanation of PHP PKI encryption technology (openssl)
  • Analyze the role of php_openssl.dll in php
  • Summary of using PHP's openssl encryption extension (recommended)
  • Detailed explanation of using DES module of openSSL library to implement encryption function in C language
  • How to generate a free certificate using openssl

<<:  Analysis of the difference between emits and attrs in Vue3

>>:  A Brief Analysis of MySQL - MVCC

Recommend

5 ways to quickly remove the blank space of Inline-Block in HTML

The inline-block property value becomes very usef...

Mysql example of splitting into multiple rows and columns by specific symbols

Some fault code tables use the following design p...

Summary of Vue's cross-domain problem handling and solutions

When you send a network request, the following sa...

Implementation of CSS Fantastic Border Animation Effect

Today I was browsing the blog site - shoptalkshow...

How to implement communication between Docker containers

Scenario: A laradock development environment (php...

Modification of time zone problem of MySQL container in Docker

Preface When Ahhang was developing the Springboot...

Some problems you may encounter when installing MySQL

Question 1: When entering net start mysql during ...

Example analysis of the page splitting principle of MySQL clustered index

This article uses an example to illustrate the pa...

Sample code for implementing form validation with pure CSS

In our daily business, form validation is a very ...

Summary of MySQL lock knowledge points

The concept of lock ①. Lock, in real life, is a t...

JavaScript implements circular carousel

This article shares the specific code of JavaScri...

Introduction to CSS3 color value RGBA and gradient color usage

Before CSS3, gradient images could only be used a...

Minimalistic website design examples

Web Application Class 1. DownForEveryoneOrJustMe ...

How to extend Vue Router links in Vue 3

Preface The <router-link> tag is a great to...

Native js implements shopping cart logic and functions

This article example shares the specific code of ...