0
votes
0answers
39 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 ...
-6
votes
1answer
73 views

RSA Algorithm - known n how to get p & q

i have got a public key with (e,n) a encrypted data and have to get the plane text via RSA and that all in C! first of all i wont to know how to find out what my p and q are? i know they have to be ...
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?
2
votes
1answer
107 views

A 1024 bits RSA algorithm with C

I am working on a small project with C language , it's an RSA text encrypting . The code works but the problem is that it doesn't work if i choose a large key . I think that the problem is due to the ...
1
vote
1answer
236 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
3answers
170 views

Random Number Seed Generator: Using System On Time

I'm trying to understand why this code is a security flaw. From my understanding, it is not safe to generate a random number seed using the system time when the program is turned on, but how is that ...
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 ...
5
votes
2answers
197 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 ...
1
vote
1answer
171 views

Error importing public key using cryptoapi CryptImportKey

I want to import public key blob to a CSP. but error occurred. BYTE pbData[] ...
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 ...
3
votes
1answer
238 views

How to read RSA public and private keys into single RSA struct?

What I'm trying to do is generate random RSA keys and then store them before my program terminates. This part is working just fine using RSA_generate_key, PEM_write_bio_RSAPrivateKey and ...
2
votes
1answer
278 views

C RSA key generator

I create a program on a microntroller (which does not run any OS), and I can't find any library in C which can give me a RSA (PKCS#1) key generator (public and private). I suppose that OpenSSH isn't ...
6
votes
1answer
356 views

Mapping RSA Encryption Parameters from CRT (Chinese remainder theorem) to .NET format

I need to implement RSA encryption/decryption using C# I have a private key with following parameters: mod n, exponent, p, q, dP, dQ, and (p-1mod q) Above parameters are explained in Chinese ...
3
votes
2answers
992 views

Library for RSA implementation in pure C

I'm looking for a very simple implementation of RSA in C. I need to place it in a DSP, so I'd like to use something very thin and straightforward. Nonetheless, I just found only examples with little ...
0
votes
0answers
131 views

Unexpected RSA_private_decrypt function behavior

I'm using OpenSSL lib and RSA, and I have faced with unexpected behavior of RSA_private_decrypt function: printf("Encrypt!!!\n\n"); int J = 0 , sz= RSA_size(public_key); I = 0; while( I < in_len){ ...
0
votes
1answer
895 views

Reading RSA keys from .PEM file to RSA structure in C

JKJS Observations: Suppose RSA private key is created by following commands: openssl genrsa -out mykey.pem 1024 Then, there is no problem reading key from that file in C: RSA *privatekey=NULL; ...
-1
votes
1answer
386 views

rsa algorithm:Can anybody be kind enough to explain me whats happening [closed]

#include <string.h> #include <conio.h> #include <math.h> int mult(unsigned int x, unsigned int y, unsigned int n) { unsigned long int k = 1; int j; for (j = 1; j <= ...
0
votes
1answer
160 views

Reading RSA keys from strings

I am trying to use RSA to decrypt some stuff using OpenSSL. I want to load a public key. The default function provided to do this is PEM_read_RSA_PUBKEY() which requires a file descriptor. I would ...
4
votes
1answer
344 views

Verifying Authenticode signed executables and DLLs using OpenSSL API

I have installed openssl and now the rsa_test.c is running fine. What I want to do is: Open any exe or dll digital certificate. Extract the Thumbprint and PublicKey. The public key contains the ...
0
votes
1answer
320 views

PEM_read_RSAPrivateKey returns “Illegal Seek” when decrypting using OpenSSL libs in C

This problem has been driving me nuts! :) I am generating a couple of public/private key pairs, but when i go to load the private key i get an error. I am using C. Note i do use the password ...
0
votes
1answer
167 views

How to convert OpenSSL SHA-512 hash to GMP number to use in RSA encryption method

SHA1(data, length, hash); unsigned char *labelPtr; labelPtr = hash; mpz_set_str (encrypted, labelPtr, 16); gmp_printf("hashed= %Zd\n", encrypted); encrypted equals 0? I need to get an integer from ...
0
votes
1answer
178 views

Im using gmp in C and next prime isnt working? Im trying to generate rsa keys

mpz_t rand1,rand2; mpz_init (rand1); mpz_init (rand2); mpz_random (rand1,512); //mpz_random (rand2,512); mpz_nextprime ( rand2, rand1 ); gmp_printf("random %Zd\n", rand2); //free the big ints ...
4
votes
1answer
2k views

Reading and writing rsa keys to a pem file in C

I am writing a C program to generate keys for RSA and write them to a file and then read from them. The homework requires me to generate the files in a openssl format. So, I chose PEM. Now, I have the ...
0
votes
1answer
104 views

RSA_private_decrypt error code : error0407106b: lib(4):funct:(113):reason(107)

i've occourred in this error using RSA_private_decrypt: error0407106b: lib(4):funct:(113):reason(107) what does it means? and why i have this error only if i work on the net, and not if i work ...
1
vote
1answer
146 views

Size of RSA struct and size of public key in Openssl

Why if I call RSA_size() on an RSA object do I obtain a value less than the return value of i2d_RSAPublicKey (the size of the public key) called on the same RSA object?
1
vote
3answers
187 views

RSA_generate_key() openssl: exp argument

I've found on internet that the exp argument of the function "is typically 3,17, or 65,537". How I choose it, and what is the difference between using 3,17 and 65,537?
0
votes
1answer
174 views

maximun size of string for encrypt in Openssl RSA

The function RSA_public_encrypt requires that the variable where encrypted text will be saved, should have a lenght of RSA_size(*rsa) bytes. Now, i need to know how big could be the text to encrypt, ...
-1
votes
1answer
224 views

send RSA public key by socket

I'm using openssl libraryes on client/server application, and i need to share public key with client. this is the struct of packet: typedef struct pack { char op[10]; char message[1024]; ...
-2
votes
1answer
240 views

print on stdout RSA public key using openssl

how can i print public key stored in a const unsigned char * after extract with i2d_RSAPublicKey ?
0
votes
1answer
225 views

How to always generate different public key using RSA_generate_key

I've encountered a problem using RSA_generate_key. The method generate the same public key in two different C sources. So these two sources are a client and a server of an application, compiled and ...
0
votes
1answer
163 views

print on stdout RSA encrypted text using openssl

i'm using this portion of code char encrypted_text[1024]; RSA_public_encrypt(sizeof(message), message, encrypted_text, rsa, RSA_PKCS1_OAEP_PADDING); printf("encrypted text: %s\n", encrypted_text); ...
1
vote
1answer
890 views

openssl create rsa key pair in C and export it

I want to create a RSA key pair in C/C++ and export it to a string to work with it. I managed to create the key rsa = RSA_generate_key(bits, exp, NULL, NULL); if(RSA_check_key(rsa)!=1){ ...
8
votes
3answers
332 views

How to use OpenSSL to extend {D,E,N} RSA key to {D,E,N,p,q,etc.}?

I have an RSA key consisting of the public & private factors and the modulus D. (I'm currently generating and using the key with a JavaScript library.) I would like to use the same key to ...
0
votes
1answer
381 views

RSA_private_encrypt always fails

I am learning to use OpenSSL library in my program. Here in the code I generate a private key and immediately I am encrypting a message using that key. But always it fails. Kindly help me. ...
1
vote
3answers
253 views

Suitable Language for RSA implementation [closed]

I want to implement an RSA cryptosystem algorithm for a university project and I' m trying to decide which programming language to use. I am very familiar with C so it would be a convenient choice. ...
2
votes
2answers
461 views

CryptoApi: Export a certificate without the private key?

I have generated a self signed certificate using the CertCreateSelfSignCertificate function. This yields a PCCERT_CONTEXT. How can I export the certificate stored in the PCCERT_CONTEXT variable with ...
1
vote
1answer
993 views

OpenSSL RSA: Unable to encrypt/decrypt messages longer than 16 bytes

I'm working on a simple program that uses OpenSSL to do basic RSA encryption and decryption. It is working fine for small messages (<16 bytes), but fails for anything over that. I understand that a ...
0
votes
1answer
218 views

Openssl: What RSA Signature scheme is supported by RSA_verify() ?

As per my understanding there are two RSA signature schemes - PSS (Probabilistic Signature Scheme) and the old PKCS1-v1_5: Can I use RSA_verify() API to check RSA signature under both schemes ?
1
vote
1answer
163 views

Clarification of RSA signature verification parameters

I have a customer supplied RSA signature verification API description that takes the parameters - Modulus(N), E, Padding scheme, salt, , message and its signature. I have to implement the signature ...
1
vote
2answers
304 views

Openssl : What does RSA n e d p q parameters represent?

What are the parameters n, e, d, p, q represent in below RSA structure for openssl ? struct rsa_st { /* The first parameter is used to pickup errors where * this is passed instead of ...
0
votes
1answer
151 views

is RSA_sign thread safe

I am using RSA_sign in a C milter program. Is this function thread safe , because I believer libmilter runs using threads and sometimes I see that RSA_sign gives incorrect signatures n the same keys ...
6
votes
2answers
6k views

RSA encrypt/decrypt

I'm writing a C program that encrypts(based on the private key) and decrypts(based on the public key) text. I'm trying to do this with the OpenSSL lib. Does anyone know any good tutorial, quick ...
1
vote
1answer
827 views

openssl not verifying signature correctly

Following the OpenSSL docs, I /think/ that what I'm doing is correct.. but apparently it's not. Compiling the file (with gcc -g -Wall -Wextra -lssl sign.c) yields no errors or warnings. ...
2
votes
3answers
604 views

Converting a binary char[] to a hexadecimal char[]

I have unsigned char[] that contains binary text. I need to convert this binary text into hexadecimal. I have managed to do just this and output the result to a file. However, for speed reasons, I ...
1
vote
2answers
1k views

Getting error in EVP_OpenInit() of OpenSSL EVP api for RSA decryption, in C

I am facing a problem in RSA decryption using OpenSSL Library (EVP api). Here is my code for key generation #include <stdio.h> #include <openssl/evp.h> #include <openssl/rsa.h> ...
0
votes
1answer
640 views

Getting error “Expecting: PUBLIC KEY” in OpenSSL RSA Implementation using C (Linux)

I am trying to implement OpenSSL RSA, following is my code for Key generation : #include <stdio.h> #include <openssl/evp.h> #include <openssl/rsa.h> #include <openssl/bio.h> ...
1
vote
1answer
261 views

Using a public key in received from a C server in a Java client

I'm having some weird problems with using a public key in a Java client. I get the public key from a C server, and I know the following: B64Encoded, X.509 RSA key, and I should use PKCS1Padding. I ...
5
votes
5answers
2k views

how to generate large random numbers C

I'm looking for a way to generate large random numbers on the order of 2^64 in C... (100000000 - 999999999), to use in a public key encryption algorithm (as p and q) I do not want to generate number ...
4
votes
1answer
2k views

Why I can't read openssl generated RSA pub key with PEM_read_RSAPublicKey?

I'm trying to read a RSA public key generated with openssl like this: Private Key: openssl genrsa -out mykey.pem 1024 Public Key afterwards: openssl rsa -in mykey.pem -pubout > ...
0
votes
1answer
658 views

How to sign a file using libssl?

I want to create a signature for a file using OpenSSL. I believe that my result should match the testfile.sig generated by openssl this way: $ openssl dgst -sha1 -binary < testfile > ...

1 2