<< < 1 2 3 4 5 6 7 8 > >>   ∑:237  Sort:Date

OpenSSL "rsautl -verify" - RSA Signature Verification
What is the purpose of the OpenSSL "rsautl -verify" command? Can I use it to verify a signed document? Yes, you can use OpenSSL "rsautl -verify" command to verify a signed document. But you need other OpenSSL commands to generate a digest from the document first. For example, you received 3 files as...
2017-03-25, 11539🔥, 0💬

OpenSSL "req -pubkey" - Extract Public Key from CSR
How to extract the public key from a CSR using OpenSSL "req -pubkey" command? If you want to extract the public key from a CSR (Certificate Signing Request), you can use the OpenSSL "req -pubkey" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&gt; req -in my_...
2016-11-20, 11335🔥, 0💬

OpenSSL "ca" Error "lookup failed for ca::policy"
Why I am getting the "variable lookup failed for ca::policy" error when running OpenSSL "ca" command? You are getting the "variable lookup failed for ca::policy" error, because OpenSSL "ca" command can not find the required "policy" option in the configuration file. For example, if you have the foll...
2016-09-08, 11035🔥, 0💬

OpenSSL "req" Command Options
What can I use OpenSSL "req" command for? What are options supported by the "req" command? OpenSSL "req" command is a certificate request and certificate generating utility. It can be used to generate Certificate Signing Request (CSR) and sign CSR. Here are options supported by the "req" command: C:...
2023-04-05, 10963🔥, 1💬

💬 2023-04-05 Hermine242: openssl req-x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/apache.key -out /etc/apache2/ssl/apache.crt

OpenSSL "ca" Error "lookup failed for ca::default_md"
Why I am getting the "variable lookup failed for ca::default_md" error when running OpenSSL "ca" command? You are getting the "variable lookup failed for ca::default_md" error, because OpenSSL "ca" command can not find the required "default_md" option in the configuration file. For example, if you h...
2016-09-08, 10959🔥, 0💬

OpenSSL "req -new" - CSR Attributes
How to add attributes in new CSR using OpenSSL "req -new" command? I was asked to create a CSR with a challenge password an attribute. In order to add attributes to new CSR created by the OpenSSL "req -new" command, first you need to write attribute options in a named section in the configuration fi...
2016-09-23, 10947🔥, 0💬

Download Root CA Certificate
How to download the certificate from a root CA? I need to the root CA certificate to close the certification validation chain. If you know the CN (Common Name) of the root CA, for example "DigiCert High Assurance EV Root CA", you can search and download it our certificate database at certificate.fyi...
2012-07-24, 10898🔥, 0💬

OpenSSL "req" - X509 V3 Extensions Configuration Options
What are X509 V3 extensions options in the configuration file for the OpenSSL "req" command? X509 V3 extensions options in the configuration file allows you to add extension properties into x.509 v3 certificate when you use OpenSSL commands to generate CSR and self-signed certificates. X509 V3 exten...
2016-10-26, 10825🔥, 0💬

OpenSSL "ans1parse" - RSA Public Key in ASN.1 Structure
How to view the ASN.1 structure of an RSA public key using the OpenSSL "asn1parse" command? You can use the OpenSSL "asn1parse" command to view the ASN.1 structure of an RSA public key as shown in the test below: C:\Users\fyicenter&gt;\loc al\openssl\opensslpkey -in rsa_pri.key -pubout -out rsa_...
2016-09-27, 10713🔥, 0💬

Download and Install OpenSSL slproweb Binary for Windows
How to download OpenSSL for Windows? I heard that OpenSSL is a nice free tool to manage keys and certificates. You can download and install OpenSSL Windows version using these steps: 1. Go to the https://slproweb.com/products/ Win32OpenSSL.htmlWebsite. 2. Scroll down and select the latest version th...
2018-01-19, 10649🔥, 0💬

OpenSSL "s_client -connect" - View Server Certificate
How to view the server certificate using the OpenSSL "s_client -connect" command? You can get the server certificate, if use "s_client -connect" without the "-quiet" option as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&gt; s_client -connect www.twitter.com:443 CONN...
2012-07-24, 10427🔥, 0💬

OpenSSL "verify" - Verify or Validate Certificate
How to verify or validate a certificate using OpenSSL "verify" command? I got a certificate from the Web site server and want to see if it is valid. If you have a certificate stored in a file, you can try to validate it or verify it with the OpenSSL "verify" command as shown below: C:\Users\fyicente...
2012-07-24, 10089🔥, 0💬

OpenSSL "rsa -pubout" - Extract RSA Public Key
How to extract the public key from an RSA key file using OpenSSL "rsa" command? If you want to extract the public key out from an RSA key file (private key an public key), you can use the OpenSSL "rsa -pubout" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&g...
2017-02-03, 10009🔥, 0💬

OpenSSL "req" Command
Where to find tutorials on using OpenSSL "req" commands for certificate request and certificate generation? Here is a collection of tutorials on using OpenSSL "req" command compiled by FYIcenter.com team to generate Certificate Signing Request (CSR) and sign CSR. OpenSSL "req" Command Options OpenSS...
2016-12-15, 9794🔥, 0💬

OpenSSL "genrsa 32" - Generate RSA Short Keys
How to generate a new RSA key pair with a shorter key size using OpenSSL "genrsa" command? If you need a new RSA key pair with a shorter key size for testing purpose, you can use the OpenSSL "genrsa" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&gt; genrsa ...
2023-09-21, 9757🔥, 3💬

💬 2023-09-21 fredy: Good

💬 2020-10-17 FYIcenter.com: @vena, the answer is yes as shown in this tutorial.

💬 2020-10-16 vena: can we already generate 32 bits key with openssl ?

List of Commands Supported in OpenSSL
What commands are supported in OpenSSL? Here is a complete list of commands supported in OpenSSL: STANDARD COMMANDS asn1parse - Parse an ASN.1 sequence. ca - Certificate Authority (CA) Management. ciphers - Cipher Suite Description Determination. cms - CMS (Cryptographic Message Syntax) utility crl ...
2012-07-23, 9583🔥, 0💬

OpenSSL "rsautl -encrypt -raw" - No Padding
Can I use OpenSSL "rsautl" command to encrypt data without any padding? Yes, you can encrypt data without any padding using the OpenSSL "rsautl -encrypt -raw" command. But you need to remember the following: No padding requires the input data to be the same size as the RSA key. No padding requires t...
2017-04-28, 9495🔥, 0💬

OpenSSL "req -verify" - Verify Signature of CSR
How to verify the digital signature inside a CSR using OpenSSL "req -verify" command? If you want to verify the digital signature inside a CSR (Certificate Signing Request), you can use the OpenSSL "req -verify" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&...
2023-05-26, 9443🔥, 1💬

💬 2023-05-26 Breck: -----BEGIN CERTIFICATE REQUEST----- MIICszCCAZsCAQAwbjELMAkGA1UEBhMCRUUx ETAPBgNVBAgMCEhhcmp1bWFhMRAwDgYDVQQH DAdUYWxsaW5uMRgwFgYD...

OpenSSL "ca" Error "lookup failed for ca::serial"
Why I am getting the "variable lookup failed for ca::serial" error when running OpenSSL "ca" command? You are getting the "variable lookup failed for ca::serial" error, because OpenSSL "ca" command can not find the required "serial" option in the configuration file. For example, if you have the foll...
2016-09-08, 9383🔥, 0💬

ASN.1 File Structure Supported by OpenSSL
What is the ASN.1 (or ASN1) file structure supported by OpenSSL? ASN.1 (Abstract Syntax Notation One) is a standard and notation that describes rules and structures for representing, encoding, transmitting, and decoding data in telecommunications and computer networking. ASN.1 defines how data of mu...
2016-10-17, 9289🔥, 0💬

OpenSSL "ans1parse -genconf" - Nested SEQUENCE ASN.1 Structure
How to how generate a DER with a nested SEQUENCE ASN.1 structure using the OpenSSL "ans1parse" command? You can define a nested SEQUENCE ASN.1 structure in an OpenSSL configuration file and use the "ans1parse -genconf" command to generate a DER with the structure as shown in the test below: C:\Users...
2016-10-15, 9207🔥, 0💬

Download OpenSSL 0.9.8h for Windows
How to download OpenSSL for Windows? I heard that OpenSSL is nice free tool to manage keys and certificates. You can download OpenSSL Windows version using these steps: 1. Go to the OpenSSL for Windows Web site. 2. Go to the line: "Complete package, except sources - Setup - 4658384 - 4 December 2008...
2016-09-04, 9059🔥, 0💬

OpenSSL Command Option to List All Options
How to list all options that are supported by a specific OpenSSL command? I know the command but I don't remember the options for that command. Interestingly, there is no "-h" option to show all options supported by a specific OpenSSL command. However, if you enter "-h" as an option following a comm...
2012-07-23, 8829🔥, 0💬

OpenSSL "ans1parse" - ASN.1 OBJECT IDENTIFIER Field Type
What is ASN.1 OBJECT IDENTIFIER field type? How to specify OBJECT IDENTIFIER field type in OpenSSL "asn1parse" command? ASN.1 OBJECT IDENTIFIER field is a primitive field that can be used to store an Object Identifier (OID) defined in the ASN.1 standard. An OID has 3 equivalent values: short name, l...
2016-09-30, 8807🔥, 0💬

<< < 1 2 3 4 5 6 7 8 > >>   ∑:237  Sort:Date