[openssl.org #3619] [PATCH] User can specify the public exponent in genrsa

2014-12-02 Thread Quentin Gouchet via RT
From ada36e7188fb42e064520726593120f2d213c30e Mon Sep 17 00:00:00 2001 From: Quentin quentin.gouc...@gmail.com Date: Fri, 14 Nov 2014 16:58:25 -0600 Subject: [PATCH] User can specify the public exponent in genrsa The user can specify as an hexadecimal string the RSA public exponent e in the RSA

[PATCH] User can specify the public exponent in genrsa

2014-12-01 Thread Quentin Gouchet
From ada36e7188fb42e064520726593120f2d213c30e Mon Sep 17 00:00:00 2001 From: Quentin quentin.gouc...@gmail.com Date: Fri, 14 Nov 2014 16:58:25 -0600 Subject: [PATCH] User can specify the public exponent in genrsa The user can specify as an hexadecimal string the RSA public exponent e in the RSA

Re: [openssl.org #3604] [PATCH] User can specify the public exponent in genrsa

2014-11-28 Thread Quentin Gouchet
Hi Matt, Sure I will do that! Viktor, the point is that is some cases it would nuce to be able to change exponents, especially the day that we might discover any threat in F4. Also just adding more possibilities for the user. Best Le 28 nov. 2014 10:28, Viktor Dukhovni openssl-us...@dukhovni.org

[openssl.org #3604] [PATCH] User can specify the public exponent in genrsa

2014-11-17 Thread Quentin Gouchet via RT
The user can specify as an hexadecimal string the RSA public exponent e in the RSA key generation. e has to be odd and greater than 65537. Example: openssl genrsa -public 123456789 -out key.pem 4096 Modified the name of exponent --- apps/genrsa.c | 46

[PATCH] User can choose the public exponent in genrsa

2014-11-14 Thread Quentin Gouchet
The user can call RSA key generation and specify the public exponent exp in a hexadecimal format. Example: openssl genrsa -choose 72bdf -out key.pem 4096 Signed-off-by: Quentin quentin.gouc...@gmail.com quentin.gouc...@gmail.com --- apps/genrsa.c | 47

Re: [PATCH] User can choose the public exponent in genrsa

2014-11-14 Thread Quentin Gouchet
Hi Ben, I will add the proper validation for the exponent to be chosen by the user then, taking in account everybody's comments. Best, Quentin Quentin Gouchet - Mobile: +46(0)723-843256 2014-11-14 14:10 GMT-06:00 Benny Baumann be...@geshi.org: Hi