<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Rank

OpenSSL "genpkey" Command for EC Keys
Where to find tutorials on using OpenSSL "genpkey" and "pkey" commands for EC private keys? Here is a collection of tutorials on using OpenSSL "genpkey" and "pkey" commands compiled by FYIcenter.com team to generate and manage EC (Elliptic Curve) private keys OpenSSL "genpkey -genparam" - Generate E...
2017-07-15, 4552👍, 0💬

OpenSSL "genpkey -genparam" - Generate EC Parameters
How to generate a new EC parameter file using OpenSSL "genpkey -genparam" command? If you need a new EC parameter file in order to create new EC keys, you can use the OpenSSL "genpkey -genparam" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&gt; genpkey -gen...
2017-07-15, 4213👍, 0💬

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

OpenSSL "pkey -pubin" - View EC Public Key
How to view contents of a EC public key file using OpenSSL "pkey" command? If you want to view contents of a EC public key stored in a file, you can use the OpenSSL "pkey -pubin" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\openssl.exeOpenSSL&gt; pkey -pubin -in my_ec_pub.ke...
2017-07-03, 5192👍, 0💬

OpenSSL "genpkey ec_paramgen_curve:secp521r1" - EC Long Keys
How to generate a new EC key pair with a longer key size using OpenSSL "genpkey" command? If you need a new EC key pair with a longer key size for testing purpose, you can use the OpenSSL "genpkey" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\opensslOpenSSL&gt; genpkey -genp...
2017-06-28, 6137👍, 0💬

OpenSSL "ecparam -list_curves" - List of EC Curves
What EC curves are supported by OpenSSL for generating EC keys? I want a list of all EC curves. If you want a list of all EC curves, you can use the OpenSSL "ecparam" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\opensslOpenSSL&gt; ecparam -list_curves secp112r1 : SECG/WTLS c...
2017-06-23, 13399👍, 0💬

OpenSSL "genpkey -des" - DES Encrypt EC Keys
How to generate a new EC key pair and encrypt the output with a DES password using OpenSSL "genpkey" command? If you want to secure your new EC private key with a DES encryption, you can use the OpenSSL "genpkey -des" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\opensslOpenSSL&a...
2017-06-23, 1601👍, 0💬

OpenSSL "rsautl" Command Options
What can I use OpenSSL "rsautl" command for? What are options supported by the "rsautl" command? OpenSSL "rsautl" command is a utility to sign, verify, encrypt and decrypt data using RSA private key and public key. Here are options supported by the "rsautl" command: C:\Users\fyicenter&gt;\loc al\...
2017-06-16, 8091👍, 0💬

OpenSSL "pkey" - Open Encrypted EC Keys
How to open an encrypted EC key file using OpenSSL "pkey" command? I was told the key file is DES encrypted and I know the password. If you are trying to open a password (encrypted) EC key file using the "pkey" command, you will be prompted for the password as shown below: C:\Users\fyicenter&gt;...
2017-06-16, 3434👍, 0💬

OpenSSL "rsautl -encrypt" - Encryption with RSA Public Key
How to encrypt a file with an RSA public key using OpenSSL "rsautl" command? If you want to encrypt a file with an RSA public in order to send private message to the owner of the public key, you can use the OpenSSL "rsault -encrypt" command as shown below: C:\Users\fyicenter&gt;type clear.txt Th...
2017-06-11, 13600👍, 0💬

OpenSSL "rsautl" - Encrypt Large File with RSA Key
How to encrypt a large file with an RSA public key using OpenSSL "rsautl" command? If you are trying to use an RSA public key to encrypt a file larger than the key size directly, you will get the "data too large for key size" error. One option to resolve the problem is to use the RSA-AES hybrid encr...
2017-06-07, 12485👍, 0💬

OpenSSL "rsautl" Command for RSA Keys
Where to find tutorials on using OpenSSL "genpkey" and "rsautl" commands for RSA private keys? Here is a collection of tutorials on using OpenSSL "rsautl" command compiled by FYIcenter.com team to encrypt, decrypt, sign or verify data with RSA (Rivest, Shamir and Adleman) public and private keys. Op...
2017-05-29, 6989👍, 0💬

OpenSSL "pkey -aes*" - Re-Encrypt EC Keys
How to re-encrypt a EC key file using OpenSSL "pkey" command? I want to change the encryption password, and maybe change the encryption algorithm. If you want to encrypt an existing EC key file again, you can use the "pkey -aes*" command as shown below: C:\Users\fyicenter&gt;\loc al\openssl\opens...
2017-05-29, 2085👍, 0💬

OpenSSL "rsautl" - Decrypt Large File with RSA Key
How to decrypt a large file with an RSA private key using OpenSSL "rsautl" command? I received a large encrypted file from my friend who used the RSA-AES hybrid encryption process with my public key. If your friend encrypted a large file with the RSA-AES hybrid encryption process with your public ke...
2017-05-20, 4880👍, 0💬

OpenSSL "rsautl -pkcs" - PKCS#1 v1.5 Padding Option
How to use RSA PKCS#1 v1.5 padding with OpenSSL "rsautl" command? I was told to encrypt a password using an RSA public key with PKCS#1 padding. OpenSSL "rsautl" uses PKCS#1 v1.5 padding as the default padding schema. But you can explicitly specify PKCS#1 v1.5 padding by using the "-pkcs" option as s...
2017-05-12, 11465👍, 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, 9415👍, 0💬

OpenSSL "rsautl" - PKCS#1 v1.5 Padding Size
Whet is the PKCS#1 v1.5 padding size with OpenSSL "rsautl -encrypt" command? I want to know the largest size of data that I can encrypt with my RSA key. The minimum padding size of PKCS#1 v1.5 padding schema is 11 bytes which contains at least 8 bytes of random string. So if you are using the "-pkcs...
2017-04-28, 3965👍, 0💬

OpenSSL "rsautl -encrypt -raw" - Data Too Large Error
Why am I getting the "data too large for key size" error with OpenSSL "rsautl -encrypt -raw" command? My input data is the same size as the RSA key and I am using no padding. In most case, you should be able to use the OpenSSL "rsautl -encrypt -raw" command to encrypt input data of the same size as ...
2017-04-22, 5561👍, 0💬

OpenSSL "rsautl" Using OAEP Padding
What is the OAEP padding schema used in OpenSSL "rsautl" command? OAEP (Optimal Asymmetric Encryption Padding), also called PKCS#1 2.0, is a padding standard specified in RFC3447 "PKCS #1: RSA Encryption, Version 1.5" proposed by RSA Laboratories in 1998. OAEP padding can be illustrated by the diagr...
2017-04-22, 4732👍, 0💬

OpenSSL "rsautl -oaep" - OAEP Padding Option
How to use OAEP padding with OpenSSL "rsautl" command? I was told to encrypt a password using an RSA public key with OAEP padding. OpenSSL "rsautl" uses PKCS#1 v1.5 padding as the default padding schema. So if you want to use OAEP padding, you have to using the "-oaep" option as shown below: C:\User...
2017-04-15, 14306👍, 0💬

OpenSSL "rsautl -sign" - RSA Signature Generation
What is the purpose of the OpenSSL "rsautl -sign" command? Can I use it to sign a document? Yes, you can use OpenSSL "rsautl -sign" command to sign a document. But you need other OpenSSL commands to generate a digest from the document first as shown in the following test: C:\Users\fyicenter&gt;d...
2017-04-04, 8469👍, 0💬

OpenSSL Signing Documents with RSA Keys
What is the process of signing a document with RSA keys using OpenSSL commands? I was told to deliver a document with digital signature. Here are steps your need to follow to sign a document with your RSA private key using OpenSSL commands: 1. Get the document to be signed ready. 2. Generate a diges...
2017-04-04, 2630👍, 0💬

OpenSSL Verify Signed Documents with RSA Keys
What is the process of verifying the signed document with RSA keys using OpenSSL commands? I received a signed document and was to verify it with senders RSA public key. Here are steps your need to follow to verify a signed document with sender's RSA public key using OpenSSL commands: 1. Verify that...
2017-03-27, 2281👍, 0💬

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, 11456👍, 0💬

<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Rank