Tagged Questions
0
votes
0answers
13 views
OpenSSL RSA_verify PKCS#1 SHA256
I've been struggling with PKCS#1 SHA256 signature verification using the OpenSSL C API.
I'm trying to get RSA_verify working with the following code:
rsaPubkey->e = BN_new();
rsaPubkey->n = ...
0
votes
0answers
23 views
RSA Encryption using openssl, variable length for encrypted text with PKCS1 Padding
I am trying to encrypt a string "HELLO" using RSA encryption with PKCS1 Padding.
I am using openssl for generating the keypair and perform encryption.
Problem: I am getting the generated encypted ...
0
votes
1answer
43 views
Using an RSA Public key to decrypt a string that was encrypted using an RSA private key
This is a duplicate of an unanswered question here: Using an RSA Public Key to decrypt a string that was encrypted using RSA Private Key
You can see the author found a solution using some code from ...
0
votes
0answers
10 views
Openssl pkcs8 default format gives RSA PRIVATE KEY [migrated]
I'm running this command on my pc (Openssl version: 1.0.1) :
openssl pkcs8 -inform DER -in file.key -passin pass:12345678a -outform PEM -out key.pem
and i got this key.pem:
-----BEGIN PRIVATE ...
0
votes
1answer
22 views
openssl: how can i get public key from modulus
I generate a pair of keys using openssl:
shell> ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/mike/.ssh/id_rsa): /path/to/test_rsa
Enter ...
0
votes
0answers
22 views
How to encrypt the file using RSA algorithm and certificate?
Just faced it and no ideas how to solve it.
I got a task to encode with RSA the file using .PEM file ( This file begins with BEGIN CERTIFICATE and ends with END CERTIFICATE).
I tried alotta ways ...
0
votes
0answers
40 views
Erratic openssl/rsa behaviour: RSA_EAY_PRIVATE_DECRYPT:padding check failed
I have written a program that runs permanently using <openssl/rsa> C library.
It basically decrypts a password given in argument. The problem is that sometimes it works flawlessly, and some ...
1
vote
0answers
105 views
Encrypt with Cryptico.js, Decrypt with OpenSSL
I am creating a public/private key on the server, sending the key to the JavaScript client where it encrypts a users password. The client sends the password to the server, and the server uses the ...
1
vote
0answers
89 views
How to load in Python-RSA a public RSA key from a file generated with openssl?
I generated a private and a public key with the following commands:
openssl genrsa -out private_key.pem 512
openssl rsa -in private_key.pem -pubout -out public_key.pem
I then tried to load them ...
0
votes
0answers
38 views
How to verify a signature in openSSL given just the public modulus and exponent in unsigned char arrays
I have read many of the related articles and have tried out the coding examples but my call to RSA_verify still fails. Here are my details:
I'm writting an application that executes in multiple ...
0
votes
1answer
48 views
Openssl CMS encrypt in ruby
I have a task which requires encrypting a big chunk of data in ruby. Encryption should be done as follows.
Generate a random key.
Encrypt the data with generated random key and in AES_256_CBC ...
1
vote
1answer
41 views
Problems with signature — openssl_sign
In JAVA code (BouncyCastle lib) we create signature using private key. Code below.
We have a task to get the same signature using PHP --- using the same private key.
Try to use PHP code like
...
3
votes
2answers
107 views
Why does RSA encrypted text give me different results for the same text
I am encrypting data with openSSL using RSA encryption, which works fine. My understanding of RSA is, that encrypting the same data with the same public key will always give you the same result (as ...
0
votes
2answers
74 views
failed to read private key from .pem file in c
I created mykey.pem using command
"openssl genrsa -out mykey.pem 1024"
and then I separate public key using command
'openssl rsa -in key.pem -pubout -out pubkey.pem'
I am reading private key ...
0
votes
0answers
71 views
openssl_pkey_get_details() expects parameter 1 to be resource, boolean given in
I've found this script "somewhere":
define("ACC_NAME", "my_steam_login");
define("ACC_PASS", "my_password");
define("GROUP_ID", "my_group_id"); // open steam group page and see "Enterchat room" link, ...
0
votes
1answer
130 views
OpenSSL RSA signature and PKCS#1 padding incorrect verification
I am generating an RSA signature of some data, using SHA-1 as the hash function, and PKCS#1 padding as the padding scheme, from a program in C++ interfacing with a smart card reader successfully. I ...
0
votes
1answer
27 views
How to specify the domain for a man page [closed]
I am trying to get man page for OpenSSL rsa. However when I type in man rsa I get the bash command rsa instead. How do I specify in the man command such that the OpenSSL RSA page will be displayed?
1
vote
1answer
244 views
OpenSSL RSA signature verification: hash and padding?
I am trying to write code to verify some RSA signatures. The signatures were made using the OpenSSL command-line tool, using the equivalent of this command line:
openssl dgst -sha1 -sign ...
1
vote
2answers
68 views
Decrypt with public key, openssl_public_decrypt like
I've a server that sends me an encrypted message.
This message is encrypted with the server's private key and I'm trying to decrypt it using the public key.
The verify method doesn't fit my needs ...
0
votes
1answer
69 views
Dumping public key from private using libopenssl
Let say I want to have a code doing something like this openssl command in my c++ application.
openssl rsa -in private.pem -pubout -outform der -out ./out.pub
How can I do that?
I was look for a ...
0
votes
1answer
130 views
Openssl: Verify RSA encrypted data with public key in certificate
I have a base64 encoded digital signature in a file called digital_signatue1.txt:
LE3v7aHDOtCYEWrURYfxrq4tAx5zg0siBK0yBdYJTxWTFw/tLoEOcT0JZPRy8RMY
...
0
votes
1answer
164 views
Get AES Key from EVP_CIPHER_CTX
I'm using openssl trying to use an RSA public key, to encrypt an AES key, and use that AES to send large-ish data over HTTP(s) to a 3rd party site. I know that's a lot of encryption, the second layer ...
0
votes
1answer
53 views
Openssl Generate Public Asymmetric Key
I am trying to output the public EC key parameters Qx and Qy from OpenSSL CLI. Is this possible?
0
votes
1answer
62 views
Generate keypair for EVP based on engine
Up until now I did the following:
rsa=RSA_generate_key(2048,RSA_F4,NULL,NULL);
if (rsa == NULL){
fprintf(stderr, "Could not generate keypair \r\n");
return EXIT_FAILURE;
} ...
0
votes
2answers
241 views
A way to do RSA “encryption” of padded SHA256 hash using command line openssl
I'm trying to come up with a one-liner solution using openssl, that will take in padded SHA256 digest of a message (256 bytes in this case, for RSA2048), and apply RSA "decryption" to the 256 byte ...
2
votes
1answer
376 views
RSA - bouncycastle PEMReader returning PEMKeyPair instead of AsymmetricCipherKeyPair for reading private key
I have a function that successfully reads a openssl formatted private key:
static AsymmetricKeyParameter readPrivateKey(string privateKeyFileName)
{
AsymmetricCipherKeyPair keyPair;
using ...
0
votes
1answer
50 views
Using OpenSSL with _huge_ RSA keys
I try to use OpenSSL with huge RSA keys.
Last night, i generated a 65536 bit RSA key (it took me 6 hours).
It seems like OpenSSL is able to generate such keys but it isn't able to encrypt with such ...
0
votes
2answers
225 views
build public key PEM file with existing modulus and exponent in php with openssl library
I have public's key's modulus and exponent. Can I generate the public key with openssl api in php ? I've read the http://php.net/manual/en/ref.openssl.php but there seems no function that archive ...
0
votes
1answer
107 views
Calling openssl_pkey_get_private() on just created private key via Copy and Paste
The following code creates a public/private key pair, opens the key using openssl_pkey_get_private() function successfully and emits the key pair to the display. A previously created key is then copy ...
1
vote
1answer
418 views
rsa encryption decryption using c
I'm trying to write C code of RSA encryption and decryption using Open SSL. But I am not able to do so. I googled it but whatever code I got from internet it was out of my head.
main function goes ...
1
vote
1answer
621 views
Generate RSA Public key from modulus and exponent in bytes in Objective-c
I'd searching many websites trying to understand how does RSA works.
I have a modulus ...
1
vote
1answer
90 views
Why do I get different RSA encrypted files between Ruby and command-line OpenSSL?
I'm trying to test the interoperability of openssl when used in Ruby on one side, and on the command line on the other side.
I generated a RSA certificate and extracted its public key this way:
...
2
votes
1answer
520 views
Load a RSA private key in Java (algid parse error, not a sequence)
I'm trying to load a private RSA key generated with ssl into java, my code is:
Generate the key:
openssl genrsa -out mykey.pem 1024
Result:
-----BEGIN RSA PRIVATE KEY-----
...
0
votes
1answer
55 views
Does a CSR need to be signed with the matching private key?
When generate a CSR using OpenSSL you have two options:
1) Generate a Private key when the CSR is generated
2) Use the private key to derive a public key and use the public key to create the CSR
Does ...
0
votes
0answers
81 views
Encrypting a private key with a passphrase
I am working on a system where I need to store an RSA private key on a server.
I intend to use OpenSSL to generate the private key and to apply a passphrase to it so that the private key is encrypted ...
1
vote
2answers
1k views
Decryption with openssl not working
Here is my php script
<?php
$pubfile = fopen("public_key.pem", "r");
$public = fread($pubfile, 8192);
fclose($pubfile);
openssl_get_publickey($public);
$prifile = fopen("private_key.pem", "r");
...
0
votes
1answer
150 views
How to convert openssl RSA key to Android bootloader RSA key format?
I need to convert a RSA public key generated using openssl into the format specified in Android boot loader code.
The format specified in the Android code base is
typedef struct ...
1
vote
2answers
196 views
Signing 20-byte message with 256-bit RSA key working with openssl.exe but not in code
I have a 256-bit private key that I want to use to sign a SHA-1 digest (20 bytes). Using openssl directly it seems to work
echo doesntmatter | openssl dgst -sha1 -binary | openssl rsautl -sign ...
1
vote
1answer
145 views
Compatibility of a secure signature algorithm
After some research it would seem that RSA with PSS padding is suggested to be used as its security properties are known to be good. The problem is that it is hard to have compatibility of signing ...
0
votes
1answer
94 views
Android KeyPairGenerator + php openssl_public_encrypt
I have a client (android device) that generates a public+private key pair. It sends the public key to a server and the server should encrypt some data using the public key and return it so the client ...
-1
votes
1answer
154 views
Public key size in RSAPublicKey encoding [closed]
I have multiple certificates in .pem format. I want to check the size of the public key in RSAPublicKey encoding. (It should be 140 bytes most of the time). Using openssl I am able to display the key.
...
5
votes
2answers
198 views
RSA_generate_key() using prngd instead of /dev/random or /dev/urandom
I want to use RSA_generate_key() on HP-UX 11.11. But hp-ux 11.11 does not provide /dev/random or /dev/urandom, so I need to use openssl prngd.
Please let me know how to use it by default in C code. I ...
3
votes
0answers
102 views
Verifying signature of non-hashed data with Ruby OpenSSL
I have an RSA public key, some data and a signature of that data. I need to verify the signature. However, the signature is not of a digest of the data, but of the entire data. (The data itself is ...
1
vote
1answer
86 views
Security of private key when using “insecure” OpenSSL methods
I recently came across a situation where I absolutely needed to use the method OpenSSL::PKey::RSA#params. However, the doc says the following:
THIS METHOD IS INSECURE, PRIVATE INFORMATION CAN LEAK ...
6
votes
2answers
327 views
OpenSSL RSA_public_decrypt in MS Crypto API
I'm trying to develop a license verification solution.
Licences are encoded on server using RSA_private_encrypt openssl function.
For Mac OX X I use openssl RSA_public_decrypt and it works like a ...
1
vote
2answers
207 views
OpenSSL, reading public RSA key from CString
I'm trying to read an RSA public key from a CString. Before I was doing it from a file and it was simple, I was using:
RSA *PEM_read_RSA_PUBKEY(FILE *fp, RSA **x, pem_password_cb *cb, void *u);
but ...
3
votes
1answer
451 views
OpenSSL - Neither PUB key nor PRIV key:: nested asn1 error
I am trying to initialize OpenSSL::PKey::RSA using a public key, and it is not working.
Following is the key pair:
-----BEGIN RSA PRIVATE KEY-----
...
1
vote
1answer
238 views
what does this command do internally? openssl pkcs8 -inform DER -in file.key?
If I run the command:
openssl pkcs8 -inform DER -in file.key
Then I get this output:
-----BEGIN PRIVATE KEY-----
MIICdQIBADANBgkqhkiG9w0BAQEFAASCAl8wggJbAgEAAoGBAJymFcYButtSdq6a
. . .
...
1
vote
1answer
141 views
RSA Encryption Between C and C#
I am trying to write a simple RSA encryption scheme to encrypt a small message between a single server and potentially many clients.
The plan I have come up with is to have the client generate a key ...
0
votes
1answer
497 views
openssl/RSA - Using a Public key to decrypt
I'm looking to secure the software update procedure for a little device I'm maintaining that runs Linux. I want to generate an md5sum of the update package's contents and then encrypt that hash with a ...




