Fix MSBLOB format with RSA.
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
bad6b116a2
commit
159f6e7ecf
1 changed files with 1 additions and 1 deletions
|
@ -548,7 +548,7 @@ static void write_rsa(unsigned char **out, RSA *rsa, int ispub)
|
||||||
hnbyte = (RSA_bits(rsa) + 15) >> 4;
|
hnbyte = (RSA_bits(rsa) + 15) >> 4;
|
||||||
RSA_get0_key(rsa, &n, &e, &d);
|
RSA_get0_key(rsa, &n, &e, &d);
|
||||||
write_lebn(out, e, 4);
|
write_lebn(out, e, 4);
|
||||||
write_lebn(out, n, -1);
|
write_lebn(out, n, nbyte);
|
||||||
if (ispub)
|
if (ispub)
|
||||||
return;
|
return;
|
||||||
RSA_get0_factors(rsa, &p, &q);
|
RSA_get0_factors(rsa, &p, &q);
|
||||||
|
|
Loading…
Reference in a new issue